/* --- Login wrapper --- */
.login-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Card --- */
.login-card {
    width: 380px;
    padding: 35px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.8s ease;
    text-align: center;
}

/* --- Logo --- */
.logo-container .logo {
    width: 80px;
    margin-bottom: 10px;
}

.logo-container h2 {
    color: #2f4adf;
    margin: 0;
    font-size: 26px;
}

.subtitle {
    color: #0a72f1;
    margin-bottom: 25px;
}

/* --- Inputs --- */
.input-group {
    text-align: left;
    margin-bottom: 18px;
}

.input-group label {
    color: #217aee;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(10, 85, 224, 0.15);
    color: #0c0b0b;
    font-size: 15px;
    transition: 0.3s;
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Button --- */
.btn-login {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #1d4ed8;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #2563eb;
}

/* --- Links --- */
.links {
    margin-top: 15px;
}

.links a {
    color: #93c5fd;
    margin: 0 8px;
    font-size: 14px;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    margin-top: 20px;
    color: #cbd5e1;
    font-size: 13px;
}

/* --- Animation --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
