/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: initial;
}

/* FOND */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1d37, #0f2a4d);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTAINER */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* CARTE */
.login-card {
    background: #ffffff;
    width: 360px;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: center;
}

/* LOGO */
.logo img {
    width: 70px;
    margin-bottom: 1px;
}

/* TITRE */
.login-card h2 {
    color: #0a1d37;
    margin-bottom: 25px;
}

/* INPUTS */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    color: #777;
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.3s;
    background: #fff;
    padding: 0 5px;
}



/* BOUTON */
button {
    width: 100%;
    padding: 12px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ea580c;
}

/* ERREUR */
.error {
    color: red;
    font-size: 13px;
    margin-bottom: 15px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}


