.icc-auth{
    max-width:1120px;
    margin:0 auto;
    padding:25px 20px 45px;
    box-sizing:border-box;
}

.icc-auth-brand{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-bottom:25px;
}

.icc-auth-brand img{
    display:block;
    width:auto;
    max-width:190px;
    max-height:75px;
}

.icc-auth-intro{
    max-width:800px;
    margin:0 auto 32px;
    text-align:center;
}

.icc-auth-intro h2{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.2;
    color:#235a96;
}

.icc-auth-intro p{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#596574;
}

.icc-auth-cols{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:28px;
    align-items:start;
}

.icc-auth-card{
    padding:30px;
    background:#fff;
    border:1px solid #e1e6ec;
    border-radius:9px;
    box-shadow:0 7px 24px rgba(0,0,0,.07);
    box-sizing:border-box;
}

.icc-auth-card h3{
    margin:0 0 7px;
    color:#235a96;
    font-size:24px;
    line-height:1.25;
}

.icc-auth-card > p{
    margin:0 0 22px;
    color:#667085;
}

.icc-auth-card label:not(.icc-check){
    display:block;
    margin:0 0 6px;
    font-weight:600;
    color:#303846;
}

.icc-auth-card input[type="text"],
.icc-auth-card input[type="email"],
.icc-auth-card input[type="password"],
.icc-auth-card input:not([type]){
    display:block;
    width:100%;
    height:44px;
    margin:0 0 17px;
    padding:8px 12px;
    border:1px solid #cfd6df;
    border-radius:5px;
    background:#fff;
    box-sizing:border-box;
    font-size:15px;
}

.icc-auth-card input:focus{
    border-color:#235a96;
    outline:none;
    box-shadow:0 0 0 2px rgba(35,90,150,.12);
}

.icc-check{
    display:flex;
    align-items:flex-start;
    gap:9px;
    margin:4px 0 20px;
    color:#4b5563;
    font-weight:400;
    line-height:1.45;
}

.icc-check input[type="checkbox"]{
    width:16px !important;
    height:16px !important;
    min-width:16px;
    margin:3px 0 0 !important;
}

.icc-auth-card button{
    display:block;
    width:100%;
    min-height:44px;
    padding:10px 18px;
    border:0;
    border-radius:5px;
    background:#235a96;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.icc-auth-card button:hover,
.icc-auth-card button:focus{
    background:#194b80;
    color:#fff;
}

.icc-auth-card a{
    color:#235a96;
    font-weight:600;
}

.icc-msg{
    max-width:800px;
    margin:0 auto 24px;
    padding:13px 16px;
    border-radius:5px;
}

.icc-error{
    border:1px solid #d8a5a5;
    background:#fff3f3;
    color:#8a2020;
}

.icc-auth-voucher{
    margin-top:30px;
    padding:20px 24px;
    border:1px solid #dce4ec;
    border-radius:7px;
    background:#f7f9fb;
    text-align:center;
}

.icc-auth-voucher strong{
    display:block;
    margin-bottom:5px;
    color:#235a96;
    font-size:17px;
}

.icc-auth-voucher p{
    margin:0;
    color:#596574;
}

@media (max-width:767px){
    .icc-auth{
        padding:20px 15px 35px;
    }

    .icc-auth-brand{
        justify-content:center;
    }

    .icc-auth-brand img{
        max-width:160px;
    }

    .icc-auth-intro h2{
        font-size:25px;
    }

    .icc-auth-cols{
        grid-template-columns:1fr;
        gap:22px;
    }

    .icc-auth-card{
        padding:23px 20px;
    }
}
