html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #E9F2FF;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 800px;
}

.auth-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    align-self: center;
    margin-top: 100px;
    margin-bottom: 200px;
}

.auth-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #007bff;
}

.auth-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #007bff;
    border-radius: 5px;
    font-size: 14px;
}

.auth-container button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.auth-container button:hover {
    background-color: #0056b3;
}

.auth-container .error {
    color: #e63946;
    font-size: 14px;
    margin-bottom: 15px;
}

.create-account {
    margin-top: 20px;
    text-align: center;
}

.create-account a {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

.create-account a:hover {
    text-decoration: none;
}

.no-account a {
    font-size: 16px;
    color: #007bff;
}

.inscription-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: bold;
}

.forgot-password a {
    color: #007bff;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: underline;
}

.forgot-password a:hover,
.inscription-link:hover {
    text-decoration: none;
}

.separator {
    width: 100%;
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
}

.pro-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: white;
    color: #007bff !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #007bff;
    font-size: 16px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pro-button:hover {
    background-color: #f8f8f8;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.vehicle-pattern-1{
    position: absolute;
    bottom: 40%;
    left: -50px;
    display: block;
    z-index: -1;
}
.vehicle-pattern-2{
    position: absolute;
    top: -10px;
    right: -50px;
    z-index: -1;
}
.vehicle-pattern-3{
    position: absolute;
    bottom: 10px;
    right: -50px;
    z-index: -1;
}
@media (max-width: 768px) {
    .auth-container {
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 20px;
    }
} 
/* Curseur pour le bouton de suppression */
.remove-file-btn {
    cursor: pointer;
}
