body {
    background-color: white; 
    font-family: 'Amiri', serif;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0; 
    font-size: large;
    text-align: center; 
}

header {
    text-align: center;
    border-radius: 6px;
    background-color: #4CAF50;
    color: red;
    padding: 10px; 
    margin-bottom: 20px; 
    width: 80%; 
    box-sizing: border-box; 
}

section {
    background-color: wheat; 
    padding: 20px;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 80%; 
    box-sizing: border-box;
}

fieldset {
    border: none; 
}

legend {
    font-weight: bold; 
}

table {
    width: 100%; 
}

td {
    padding: 10px;
}

input[type="email"],
input[type="password"],
input[type="submit"],
input[type="reset"],
#return {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
}

input[type="submit"] {
    background-color: #4CAF50; 
    color: white; 
    border: none; 
    cursor: pointer; 
}

input[type="submit"]:hover {
    background-color: #45a049; 
}

input[type="reset"] {
    background-color: #f44336; 
    color: white; 
    border: none; 
    cursor: pointer; 
}

input[type="reset"]:hover {
    background-color: #e53935; 
}

#error_cnx {
    color: red; 
    text-align: center; 
}

#return {
    background-color: #f44336; 
    color: white; 
    border: none; 
    cursor: pointer; 
}

#return:hover {
    background-color: #e53935; 
}

@media (max-width: 768px) {
    body {
        font-size: medium; /* Adjust font size for smaller screens */
    }
    header {
        font-size: 18px;
    }
}