/* ============================================================
   Login page styles
   ============================================================ */

/* Full-screen background */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/img/21161-min.png') no-repeat center center / cover;
}

/* Glass card */
.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;   /* rounded-4 */
    padding: 1.5rem;
}

/* App title */
.login-card .login-title {
    color: #D4AF37;
}

/* Logo */
.login-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    margin-bottom: 0.25rem;
    isolation: isolate;
}

.login-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.993);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
}

.login-card .login-logo {
    max-height: 72px;
    object-fit: contain;
    display: block;
}

/* Input group — icon cell */
.login-card .input-group-text {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Text / password inputs */
.login-card .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.login-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.login-card .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(208, 161, 90, 0.7);
    box-shadow: 0 0 0 0.2rem rgba(208, 161, 90, 0.25);
    color: #fff;
}

/* Signature */
.login-signature {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.03em;
}

.login-signature span {
    color: #e74c3c;
}

.login-signature a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.login-signature a:hover {
    color: #f0c84a;
    text-decoration: underline;
}
/* Or divider */
.login-or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0 0.75rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}
.login-or-divider::before,
.login-or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.login-or-divider span {
    padding: 0 0.75rem;
}

/* Google coming-soon button */
.btn-google-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff !important;
    border: 1px solid #dadce0 !important;
    color: #3c4043 !important;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    border-radius: 4px;
    padding: 0.6rem 1rem;
    opacity: 1 !important;
    cursor: not-allowed;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px rgba(60,64,67,0.15);
    letter-spacing: 0.01em;
    transition: none;
}
.btn-google-soon svg { flex-shrink: 0; }
.btn-google-soon svg path { opacity: 1; }

.google-soon-badge {
    position: absolute;
    top: -9px;
    inset-inline-end: -4px;
    background: #f6c23e;
    border: none;
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(246,194,62,0.5);
}

.login-card .btn-toggle-password {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.login-card .btn-toggle-password:hover {
    background: rgba(255, 255, 255, 0.18);
}
