/* ===============================
   PAGE LOGIN
=============================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 30%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.18), transparent 25%),
        linear-gradient(135deg, #06124a 0%, #0b1f7a 45%, #1b1464 100%);
    position: relative;
    overflow: hidden;
}

/* ===============================
   DECOR
=============================== */
.login-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
}

.login-bg-circle.one {
    width: 160px;
    height: 160px;
    background: rgba(249, 115, 22, 0.18);
    top: 6%;
    right: 8%;
}

.login-bg-circle.two {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.06);
    bottom: 10%;
    left: 6%;
}

.login-bg-circle.three {
    width: 130px;
    height: 130px;
    background: rgba(59, 130, 246, 0.12);
    top: 45%;
    left: 10%;
}

/* ===============================
   CARD
=============================== */
.login-card {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    border-radius: 26px;
    padding: 28px 24px 24px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    animation: loginFadeUp 0.6s ease;
}

/* ===============================
   LOGOS
=============================== */
.login-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.login-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    padding: 10px;
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===============================
   HEADERS
=============================== */
.login-header {
    text-align: center;
    margin-bottom: 10px;
}

.login-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

/* ===============================
   WELCOME
=============================== */
.login-welcome {
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.login-welcome-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fde68a;
}

.login-welcome p {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

.login-date {
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #fde68a;
}

/* ===============================
   FORM
=============================== */
.login-form-group {
    margin-bottom: 14px;
}

.login-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    padding: 0 45px 0 12px;
}

.login-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.login-toggle-password {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   ERROR
=============================== */
.login-error-wrapper {
    text-align: center;
    margin-top: 8px;
}

.login-error {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
    color: #ff0000;
    /* background: rgba(249, 115, 22, 0.12); 
    border: 1px solid rgba(249, 115, 22, 0.35);*/
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1.4;
}

/* ===============================
   BUTTON
=============================== */
.login-btn {
    width: 100%;
    height: 50px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
}

/* ===============================
   ANIMATION
=============================== */
@keyframes loginFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}