﻿.customer-application {
    font-size: 0.9rem;
    height: 100vh;
    margin: 0;
}

    .customer-application p {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-top: 15px;
        margin-bottom: -5px;
    }

    .customer-application label {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .customer-application .register-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: center;
        gap: 0.8rem;
    }

        .customer-application .register-grid > * {
            width: 100%;
            height: fit-content;
        }

    .customer-application > .banner {
        height: 65px;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

        .customer-application > .banner .logo {
            background-image: url(/img/common/ct_logo_r_w.svg);
            background-repeat: no-repeat;
            background-size: auto 50px;
            height: 50px;
            left: 50px;
            position: absolute;
            top: 15px;
            width: 200px;
        }

    .customer-application > .wrapper {
        align-items: center;
        background-image: url("/img/signin/bg.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 160%;
        padding: 75px 20px 20px 20px;
        width: 100%;
    }

    .customer-application .form-content {
        -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
        background: #ffffff;
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
        max-width: 700px;
        padding: 30px;
        width: 90%;
        position: absolute;
        top: 150px;
    }


        .customer-application .form-content .steps {
        }

            .customer-application .form-content .steps .btn.disabled {
                /* We do not want du change the opacity for the disabled buttons */
                opacity: 1;
            }


        .customer-application .form-content input.error,
        .customer-application .form-content select.error,
        .customer-application .form-content div.error {
            border: solid 2px red;
        }
