/* Styles pour la page de connexion */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A3945;
}

.login-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(42, 57, 69, 0.18);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.login-form label {
    color: #2A3945;
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: block;
    font-size: 1rem;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    border: 1.5px solid #2A3945;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 1.08rem;
    color: #2A3945;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(42, 57, 69, 0.07);
    width: 100%;
    margin-bottom: 0.2rem;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    border-color: #F9B233;
    box-shadow: 0 0 0 2px #F9B23333;
    outline: none;
}

.login-form .remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

/* Custom checkbox */
.login-form input[type="checkbox"] {
    appearance: none;
    width: 1.15em;
    height: 1.15em;
    border: 2px solid #2A3945;
    border-radius: 5px;
    background: #fff;
    margin-right: 0.5em;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    vertical-align: middle;
}
.login-form input[type="checkbox"]:checked {
    background: #F9B233;
    border-color: #F9B233;
}
.login-form input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    position: absolute;
    left: 0.32em;
    top: 0.08em;
    width: 0.3em;
    height: 0.6em;
    border: solid #2A3945;
    border-width: 0 0.18em 0.18em 0;
    transform: rotate(45deg);
}

.login-form .remember-row label {
    font-weight: 400;
    color: #2A3945;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    margin: 0;
}

.login-form .forgot-link {
    color: #F9B233;
    text-decoration: none;
    font-size: 0.98rem;
    transition: text-decoration 0.2s;
    margin-left: 1em;
}

.login-form .forgot-link:hover {
    text-decoration: underline;
}

.login-form button[type="submit"] {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #2A3945 60%, #F9B233 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.95rem 0;
    font-size: 1.13rem;
    margin-top: 1.2rem;
    box-shadow: 0 2px 8px rgba(42, 57, 69, 0.10);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
}

.login-form button[type="submit"]:hover,
.login-form button[type="submit"]:focus {
    background: linear-gradient(90deg, #F9B233 0%, #2A3945 100%);
    color: #2A3945;
    outline: none;
    box-shadow: 0 4px 16px rgba(249, 178, 51, 0.15);
} 



/* Ajoute ceci dans public/css/login.css */

body {
    background: #f7fafc;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
}

form {
    max-width: 400px;
    margin: 60px auto;
    background: #fff;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 12px 0 24px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

button, input[type="submit"] {
    background: #2d3748;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover, input[type="submit"]:hover {
    background: #4a5568;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.logo {
    display: block;
    margin: 32px auto 0 auto;
    width: 80px;
}