.authenticate-page {
    background: radial-gradient(circle at top, #0a0a0a, #000000);
    color: #e5e5e5;
    padding: 60px 20px 60px;
}

.authenticate-page .container.authenticate {
    display: flex;
    justify-content: center;
    align-items: center;
}

.authenticate-page .box {
    width: 500px;
    background: #111111;
    border: 1px solid rgba(255, 179, 1, 0.1);
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.authenticate-page .box:hover {
    border-color: rgba(255, 179, 1, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 179, 1, 0.03);
}

.authenticate-page .box .logo-icon {
    text-align: center;
    margin-bottom: 20px;
}

.authenticate-page .box .logo-icon i {
    font-size: 48px;
    color: #ffb301;
    background: rgba(255, 179, 1, 0.08);
    padding: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 179, 1, 0.15);
}

.authenticate-page h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.authenticate-page h2 span {
    color: #ffb301;
}

.authenticate-page .sub-title {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 25px;
}

.authenticate-page label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #e5e7eb;
    font-size: 14px;
}

.authenticate-page label i {
    color: #ffb301;
    margin-right: 6px;
}

.authenticate-page input {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 2px solid rgba(255, 179, 1, 0.08);
    background: #0a0a0a;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.authenticate-page input:focus {
    outline: none;
    border-color: #ffb301;
    box-shadow: 0 0 30px rgba(255, 179, 1, 0.06);
}

.authenticate-page input:hover {
    border-color: rgba(255, 179, 1, 0.2);
}

.authenticate-page input::placeholder {
    color: #6b7280;
    font-size: 14px;
}

.authenticate-page button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffb301, #ffd800, #fdf001, #ffd800, #ffb301);
    border: none;
    color: #000000;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.authenticate-page button:hover {
    background: linear-gradient(135deg, #fdf001, #ffd800, #ffb301);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 179, 1, 0.25);
}

.authenticate-page button:active {
    transform: scale(0.98);
}

.authenticate-page .link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #9ca3af;
}

.authenticate-page .link a {
    color: #ffb301;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.authenticate-page .link a:hover {
    color: #fdf001;
    border-bottom-color: #fdf001;
}

/* =========================
   ALERT STYLES
========================= */

.alert.alert-danger {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #fca5a5;
}

.alert.alert-danger ul {
    margin: 0;
    padding-left: 20px;
}

.alert.alert-danger li {
    font-size: 14px;
    list-style: disc;
    color: #fca5a5;
}

/* =========================
   SUCCESS ALERT
========================= */

.alert.alert-success {
    background: rgba(255, 179, 1, 0.08);
    border: 1px solid rgba(255, 179, 1, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #ffb301;
}

.alert.alert-success ul {
    margin: 0;
    padding-left: 20px;
}

.alert.alert-success li {
    font-size: 14px;
    list-style: disc;
    color: #ffb301;
}

/* =========================
   DIVIDER
========================= */

.authenticate-page .divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #6b7280;
    font-size: 13px;
}

.authenticate-page .divider::before,
.authenticate-page .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 179, 1, 0.08);
}

.authenticate-page .divider::before {
    margin-right: 16px;
}

.authenticate-page .divider::after {
    margin-left: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .authenticate-page {
        padding: 40px 16px;
    }

    .authenticate-page .box {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .authenticate-page .box .logo-icon i {
        font-size: 36px;
        padding: 12px;
    }

    .authenticate-page h2 {
        font-size: 20px;
    }

    .authenticate-page label,
    .authenticate-page input {
        font-size: 14px;
    }

    .authenticate-page input {
        padding: 8px 12px;
    }

    .authenticate-page button {
        font-size: 15px;
        padding: 10px;
    }

    .authenticate-page .link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .authenticate-page {
        padding: 30px 12px;
    }

    .authenticate-page .box {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .authenticate-page .box .logo-icon i {
        font-size: 32px;
        padding: 10px;
    }

    .authenticate-page h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .authenticate-page .sub-title {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .authenticate-page label {
        font-size: 13px;
    }

    .authenticate-page input {
        font-size: 13px;
        padding: 8px 10px;
        margin-bottom: 12px;
    }

    .authenticate-page button {
        font-size: 14px;
        padding: 10px;
        margin-top: 6px;
    }

    .authenticate-page .link {
        font-size: 12px;
        margin-top: 12px;
    }

    .authenticate-page .divider {
        font-size: 12px;
        margin: 14px 0;
    }

    .alert.alert-danger li {
        font-size: 13px;
    }
}