/* ==========================================
   RESET
========================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ==========================================
   BODY
========================================== */

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #14213d;

    background:
        linear-gradient(
            135deg,
            #f4f8ff,
            #ffffff
        );

    min-height: 100vh;
}


/* ==========================================
   AUTH PAGE
========================================== */

.auth-page {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px 20px;
}


/* ==========================================
   AUTH CARD
========================================== */

.auth-card {
    width: 100%;

    max-width: 470px;

    background: #ffffff;

    border: 1px solid #e7edf5;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 25px 70px
        rgba(20, 60, 120, 0.12);
}


/* ==========================================
   AUTH BRAND
========================================== */

.auth-brand {
    text-align: center;

    padding: 35px 30px 25px;

    background:
        linear-gradient(
            135deg,
            #f4f8ff,
            #ffffff
        );
}


.auth-brand img {
    width: 85px;

    height: 85px;

    object-fit: contain;

    margin-bottom: 12px;
}


.auth-brand h1 {
    font-size: 26px;

    color: #1261c9;

    margin-bottom: 6px;
}


.auth-brand p {
    font-size: 13px;

    color: #718096;
}


/* ==========================================
   AUTH CONTENT
========================================== */

.auth-content {
    padding: 35px;
}


.auth-content h2 {
    font-size: 28px;

    margin-bottom: 10px;
}


.auth-description {
    color: #718096;

    line-height: 1.6;

    margin-bottom: 28px;
}


/* ==========================================
   FORM
========================================== */

.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 700;

    color: #26364d;
}


.form-group input {
    width: 100%;

    padding: 14px 15px;

    border:
        1px solid #d8e0eb;

    border-radius: 10px;

    outline: none;

    font-size: 15px;

    color: #14213d;

    background: #ffffff;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group input:focus {
    border-color: #1261c9;

    box-shadow:
        0 0 0 4px
        rgba(18, 97, 201, 0.10);
}


/* ==========================================
   AUTH BUTTON
========================================== */

.auth-button {
    width: 100%;

    border: none;

    border-radius: 10px;

    padding: 15px;

    margin-top: 5px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1261c9,
            #164c98
        );

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.auth-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(18, 97, 201, 0.20);
}


.auth-button:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}


/* ==========================================
   AUTH MESSAGE
========================================== */

.auth-message {
    display: none;

    margin-top: 18px;

    padding: 13px;

    border-radius: 9px;

    font-size: 14px;

    line-height: 1.5;
}


.auth-message.success {
    display: block;

    background: #eaf8ef;

    color: #177245;
}


.auth-message.error {
    display: block;

    background: #fff0f1;

    color: #b42335;
}


/* ==========================================
   AUTH SWITCH
========================================== */

.auth-switch {
    text-align: center;

    color: #718096;

    font-size: 14px;

    margin-top: 25px;
}


.auth-switch a {
    color: #1261c9;

    text-decoration: none;

    font-weight: 700;
}


.auth-switch a:hover {
    text-decoration: underline;
}


/* ==========================================
   DASHBOARD HEADER
========================================== */

.dashboard-header {
    min-height: 78px;

    background: #ffffff;

    border-bottom:
        1px solid #e6ebf2;

    padding:
        12px 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.dashboard-brand {
    display: flex;

    align-items: center;

    gap: 10px;
}


.dashboard-brand img {
    width: 52px;

    height: 52px;

    object-fit: contain;
}


.dashboard-brand h1 {
    color: #1261c9;

    font-size: 20px;

    margin-bottom: 3px;
}


.dashboard-brand p {
    color: #718096;

    font-size: 11px;
}


/* ==========================================
   LOGOUT BUTTON
========================================== */

.logout-button {
    border: none;

    border-radius: 9px;

    padding:
        11px 20px;

    background: #c91f3f;

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}


.logout-button:hover {
    background: #a91833;

    transform: translateY(-1px);
}


.logout-button:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}


/* ==========================================
   DASHBOARD PAGE
========================================== */

.dashboard-page {
    min-height:
        calc(100vh - 78px);

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 40px 20px;
}


/* ==========================================
   COMING SOON CARD
========================================== */

.coming-soon-card {
    width: 100%;

    max-width: 720px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #e6ebf2;

    border-radius: 26px;

    padding:
        60px 45px;

    box-shadow:
        0 25px 70px
        rgba(20, 60, 120, 0.10);
}


/* ==========================================
   COMING SOON ICON
========================================== */

.coming-soon-icon {
    width: 78px;

    height: 78px;

    margin:
        0 auto 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: #edf5ff;

    font-size: 35px;
}


/* ==========================================
   COMING SOON LABEL
========================================== */

.coming-soon-label {
    display: inline-block;

    padding:
        7px 14px;

    border-radius: 30px;

    background: #edf5ff;

    color: #1261c9;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


/* ==========================================
   COMING SOON TITLE
========================================== */

.coming-soon-card h2 {
    font-size: 42px;

    color: #14213d;

    margin-bottom: 17px;

    letter-spacing: -1px;
}


.coming-soon-card > p {
    max-width: 570px;

    margin:
        0 auto;

    color: #718096;

    line-height: 1.8;

    font-size: 16px;
}


/* ==========================================
   WELCOME USER
========================================== */

.welcome-user {
    margin-top: 25px;

    color: #718096;

    font-size: 14px;
}


.welcome-user strong {
    color: #1261c9;
}


/* ==========================================
   HOME BUTTON
========================================== */

.home-button {
    display: inline-block;

    margin-top: 28px;

    padding:
        13px 22px;

    border-radius: 10px;

    background: #1261c9;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    font-size: 14px;

    transition: 0.25s ease;
}


.home-button:hover {
    background: #0d4fa8;

    transform: translateY(-2px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .auth-content {
        padding: 27px 22px;
    }

    .auth-brand {
        padding:
            28px 20px 20px;
    }

    .auth-content h2 {
        font-size: 24px;
    }

    .dashboard-header {
        padding:
            12px 18px;
    }

    .dashboard-brand p {
        display: none;
    }

    .dashboard-brand h1 {
        font-size: 17px;
    }

    .dashboard-brand img {
        width: 45px;
        height: 45px;
    }

    .logout-button {
        padding:
            9px 13px;
    }

    .coming-soon-card {
        padding:
            45px 22px;
    }

    .coming-soon-card h2 {
        font-size: 31px;
    }

    .coming-soon-card > p {
        font-size: 14px;
    }

}