body.page-login{
    background-color: var(--bg);
    font-family: Arial, sans-serif;
}

.input {
    display: block;
    padding: 10px;
    width: 400px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}



#logo_login{
    width: 400px; 
}

.btn_connexion {
    padding: 20px 40px;
    margin: 10px;
    border-radius: 8px;
    border: none;
    background-color: #367048;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor:pointer;
    justify-content: center;
}

a {
    display: block;
    color: rgb(79, 197, 244);
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.form-container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 15px;
    margin: 60px auto 0;   
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.alert-error {
    background-color: #f8d7da;
    color: #842029;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #f5c2c7;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: center;
}

.back-arrow {
    position: absolute;
    top: 40px;
    left: 40px;

    display: flex;
    align-items: center;     
    gap: 10px;               

    text-decoration: none;
    color: #367048;
    font-weight: bold;
}

.back-arrow .arrow {
    font-size: 3rem;  
    line-height: 1;     
}

.back-arrow .text {
    font-size: 2rem;
}


.back-arrow:hover {
    transform: translateX(-3px);
}
