
/* ==========================================
   MANIASLT - REGISTER PAGE
   Theme: White / Sky Blue / Navy
========================================== */


/* ==========================================
   PAGE BACKGROUND
========================================== */

.register-page {
    min-height: 800px;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(56, 189, 248, 0.14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f0f9ff 55%,
            #e0f2fe 100%
        );
}


/* ==========================================
   REGISTER LAYOUT
========================================== */

.register-layout {
    max-width: 1050px;

    grid-template-columns: 1fr 1fr;

    border-radius: 24px;
}


/* ==========================================
   LEFT SIDE
========================================== */

.register-welcome {
    min-height: 680px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(56, 189, 248, 0.20),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #071c33 0%,
            #0b2a4a 65%,
            #075985 100%
        );
}

.register-welcome h1 {
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.15;
}

.register-welcome h1 span {
    display: block;
    color: #38bdf8;
}


/* ==========================================
   RIGHT SIDE
========================================== */

.register-card {
    padding: 45px 55px;
}

.register-card .login-logo {
    margin-bottom: 25px;
}

.register-card h2 {
    font-size: 30px;
}

.register-card .login-card-header p {
    max-width: 350px;
}


/* ==========================================
   REGISTER FORM
========================================== */

.register-form {
    gap: 18px;
    margin-top: 26px;
}

.register-form .form-group {
    gap: 7px;
}

.register-form .form-group label {
    font-size: 13px;
}

.register-form .form-group input {
    height: 50px;

    background: #f8fafc;

    border: 1px solid #cbd5e1;
    border-radius: 12px;
}

.register-form .form-group input:focus {
    border-color: #38bdf8;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(56, 189, 248, 0.12);
}


/* ==========================================
   REGISTER BUTTON
========================================== */

.register-submit {
    min-height: 52px;

    margin-top: 5px;

    border-radius: 12px;

    background: #38bdf8;

    color: #071c33;

    font-size: 15px;
    font-weight: 800;
}

.register-submit:disabled {
    background: #bae6fd;

    color: #64748b;

    cursor: not-allowed;

    box-shadow: none;

    transform: none;
}

.register-status {
    margin: -8px 0 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.6;

    text-align: center;
}


/* ==========================================
   BOTTOM LINK
========================================== */

.register-bottom {
    margin-top: 22px;

    padding-top: 20px;

    border-top: 1px solid #e2e8f0;
}

.register-bottom a {
    color: #0284c7;
}

.register-bottom a:hover {
    color: #ef3340;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .register-welcome,
    .register-card {
        padding: 35px;
    }

    .register-welcome h1 {
        font-size: 38px;
    }

    .register-card h2 {
        font-size: 28px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .register-page {
        min-height: auto;

        padding: 30px 0 55px;
    }

    .register-layout {
        grid-template-columns: 1fr;

        max-width: 480px;

        border-radius: 18px;
    }

    .register-welcome {
        min-height: auto;

        padding: 35px 28px;
    }

    .register-welcome h1 {
        font-size: 34px;
    }

    .register-card {
        padding: 35px 28px 40px;
    }

    .register-card .login-logo {
        max-width: 160px;
    }

    .register-card h2 {
        font-size: 27px;
    }

    .register-form {
        gap: 18px;

        margin-top: 25px;
    }

    .register-form .form-group input {
        height: 50px;

        font-size: 16px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .register-page {
        padding: 20px 0 40px;
    }

    .register-welcome,
    .register-card {
        padding: 28px 20px;
    }

    .register-welcome h1 {
        font-size: 30px;
    }

    .register-card h2 {
        font-size: 25px;
    }

}