/* =========================================================
   REGISTER
========================================================= */

.register{
    padding:80px 0;
    background:#f8fafc;
}

.register .container{
    max-width:1200px;
    margin:auto;
}

/* =========================================================
   REGISTER HEADER
========================================================= */

.register-header{
    text-align:center;
    margin-bottom:50px;
}

.register-header h2{
    font-size:42px;
    color:#111827;
    margin-bottom:12px;
    font-weight:700;
}

.register-header p{
    max-width:650px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

/* =========================================================
   REGISTER WRAPPER
========================================================= */

.register-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:stretch;
}

/* =========================================================
   REGISTER INFO
========================================================= */

.register-info{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    border-radius:15px;
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:700px;
    box-shadow:0 15px 40px rgba(37,99,235,.25);
}

.register-icon{
    width:100px;
    height:100px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:30px;
}

.register-icon i{
    font-size:42px;
}

.register-info h3{
    font-size:34px;
    margin-bottom:18px;
}

.register-info p{
    line-height:1.9;
    opacity:.95;
    margin-bottom:30px;
}

.register-info ul{
    list-style:none;
}

.register-info ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-size:16px;
}

.register-info ul li i{
    color:#fde047;
}

/* =========================================================
   REGISTER FORM
========================================================= */

.register-form-box{
    background:#fff;
    padding:45px;
    border-radius:15px;
    min-height:700px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.register-form-box h3{
    font-size:30px;
    color:#111827;
    margin-bottom:30px;
}

/* =========================================================
   FORM ROW
========================================================= */

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
    color:#374151;
}

.form-group input{
    width:100%;
    height:55px;
    padding:0 18px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
}

.form-group input:hover{
    border-color:#93c5fd;
}

.form-group input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

/* =========================================================
   TERMS
========================================================= */

.register-options{
    margin-bottom:25px;
}

.register-options label{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:15px;
    color:#374151;
    line-height:1.7;
}

.register-options input{
    width:16px;
    height:16px;
    accent-color:#2563eb;
    cursor:pointer;
    margin-top:3px;
}

.register-options a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.register-options a:hover{
    text-decoration:underline;
}

/* =========================================================
   REGISTER BUTTON
========================================================= */

.register-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    font-size:17px;
    font-weight:600;
    letter-spacing:.3px;
    cursor:pointer;
    margin-top:10px;
    box-shadow:0 8px 20px rgba(37,99,235,.25);
    transition:.3s;
}

.register-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(37,99,235,.35);
}

/* =========================================================
   SOCIAL REGISTER
========================================================= */

.social-register{
    margin-top:35px;
    text-align:center;
}

.social-register p{
    color:#6b7280;
    margin-bottom:20px;
}

.social-buttons{
    display:flex;
    gap:15px;
}

.social-buttons a{
    flex:1;
    height:54px;
    border:1px solid #d1d5db;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#374151;
    font-weight:600;
    transition:.3s;
}

.social-buttons a i{
    font-size:18px;
}

.social-buttons a:hover{
    border-color:#2563eb;
    background:#f8fbff;
    color:#2563eb;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/* =========================================================
   LOGIN LINK
========================================================= */

.login-link{
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #e5e7eb;
    text-align:center;
}

.login-link p{
    color:#6b7280;
}

.login-link a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.login-link a:hover{
    text-decoration:underline;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .register-wrapper{
        grid-template-columns:1fr;
    }

    .register-info{
        order:2;
        min-height:auto;
    }

    .register-form-box{
        order:1;
        min-height:auto;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .register{
        padding:60px 0;
    }

    .register-header{
        margin-bottom:35px;
    }

    .register-header h2{
        font-size:32px;
    }

    .register-header p{
        font-size:15px;
    }

    .register-wrapper{
        gap:25px;
    }

    .register-info,
    .register-form-box{
        padding:30px;
    }

    .register-info h3{
        font-size:28px;
    }

    .register-icon{
        width:80px;
        height:80px;
    }

    .register-icon i{
        font-size:34px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .social-buttons{
        flex-direction:column;
    }

}