/* ==========================================
   SmartDocs V1
   Register Page
========================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:

    "Inter",

    sans-serif;

    background:

    linear-gradient(

        135deg,

        #14214d,

        #2563eb,

        #4db8ff

    );

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:40px;

}

.register-container{

    width:100%;

    max-width:1300px;

    min-height:760px;

    display:grid;

    grid-template-columns:

    60% 40%;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:

    0 25px 70px

    rgba(0,0,0,.18);

}
/* ==========================================
   LEFT BRANDING PANEL
========================================== */

.branding-panel{

    position:relative;

    background:

    linear-gradient(

        180deg,

        #1e3a8a,

        #2563eb

    );

    color:#fff;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:70px;

}

.branding-panel::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

    rgba(255,255,255,.08);

    top:-120px;

    right:-120px;

}

.branding-panel::after{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:

    rgba(255,255,255,.08);

    bottom:-80px;

    left:-80px;

}

.branding-content{

    position:relative;

    z-index:2;

    max-width:520px;

}

.brand-logo{

    width:120px;

    margin-bottom:28px;

}

.branding-content h1{

    font-size:56px;

    font-weight:800;

    margin-bottom:12px;

}

.tagline{

    font-size:20px;

    opacity:.95;

}

.branding-divider{

    width:90px;

    height:4px;

    border-radius:10px;

    background:#fff;

    margin:35px 0;

}

.branding-content h2{

    font-size:44px;

    font-weight:700;

    margin-bottom:20px;

}

.branding-description{

    font-size:20px;

    line-height:1.8;

    opacity:.95;

    margin-bottom:40px;

}

.feature-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.feature-item{

    font-size:19px;

    font-weight:600;

}
/* ==========================================
   RIGHT REGISTER PANEL
========================================== */

.register-panel{

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f8fafc;

    padding:60px;

}

.register-card{

    width:100%;

    max-width:460px;

    background:#ffffff;

    border-radius:24px;

    padding:50px;

    box-shadow:
    0 20px 50px
    rgba(15,23,42,.08);

    border:1px solid #e5e7eb;

}

.register-logo{

    width:180px;

    display:block;

    margin:0 auto 25px;

}

.register-card h2{

    text-align:center;

    font-size:34px;

    color:#0f172a;

    margin-bottom:12px;

}

.register-card p{

    text-align:center;

    color:#64748b;

    margin-bottom:35px;

    line-height:1.7;

}

.register-card label{

    display:block;

    margin-bottom:8px;

    margin-top:18px;

    font-weight:600;

    color:#334155;

}

.register-card input{

    width:100%;

    height:52px;

    border:1px solid #d1d5db;

    border-radius:12px;

    padding:0 16px;

    font-size:15px;

    transition:.25s;

    outline:none;

}

.register-card input:focus{

    border-color:#2563eb;

    box-shadow:
    0 0 0 4px
    rgba(37,99,235,.12);

}
/* ==========================================
   BUTTON
========================================== */

.primary-btn{

    width:100%;

    height:56px;

    margin-top:30px;

    border:none;

    border-radius:14px;

    background:#2563eb;

    color:#ffffff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.primary-btn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

    box-shadow:
    0 12px 30px
    rgba(37,99,235,.25);

}

/* ==========================================
   LINKS
========================================== */

.register-links{

    margin-top:28px;

    text-align:center;

}

.register-links p{

    color:#64748b;

    margin-bottom:8px;

}

.register-links a{

    text-decoration:none;

    color:#2563eb;

    font-weight:700;

}

.register-links a:hover{

    text-decoration:underline;

}

/* ==========================================
   FOOTER
========================================== */

.footer-links{

    margin-top:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    font-size:14px;

}

.footer-links a{

    color:#64748b;

    text-decoration:none;

}

.footer-links a:hover{

    color:#2563eb;

}

/* ==========================================
   LOADING OVERLAY
========================================== */

.loading-overlay{

    position:fixed;

    inset:0;

    background:
    rgba(255,255,255,.85);

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:9999;

}

.loading-box{

    width:320px;

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.15);

}

.loader{

    width:52px;

    height:52px;

    margin:0 auto 20px;

    border:5px solid #dbeafe;

    border-top:5px solid #2563eb;

    border-radius:50%;

    animation:spin .8s linear infinite;

}

.loading-box h3{

    margin-bottom:10px;

    color:#0f172a;

}

.loading-box p{

    color:#64748b;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:992px){

    .register-container{

        grid-template-columns:1fr;

    }

    .branding-panel{

        display:none;

    }

    .register-panel{

        padding:30px;

    }

    .register-card{

        padding:35px;

    }

}