.login-card-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001F3F 0%, #001226 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 400px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.login-header h2 {
    color: white;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 5px;
}

.login-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin-bottom: 30px;
}

/* Style des inputs */
.login-body .form-group {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.login-body input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    color: white !important;
    padding: 12px 20px !important;
    height: auto !important;
    width: 75% !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
}

.login-body input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    text-align: center !important;
}

.login-body input:focus {
    border-color: #FF8C00 !important;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2) !important;
    outline: none !important;
}

.btn-login {
    background: #FF8C00 !important;
    border: none !important;
    border-radius: 10px !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 12px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    background: #e67e00 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.login-footer {
    margin-top: 30px;
}

.login-footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8em;
}
