* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Century Gothic', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #f15922;
}

main {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

form.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form.login-form label {
    margin-bottom: 5px;
    font-weight: bold;
    width: 100%;
    text-align: left;
}

form.login-form input {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    font-size: 1em;
    width: 100%;
}

form.login-form button {
    padding: 10px;
    background: #f15922;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
}

form.login-form button:hover {
    background: #f15922;
}

form.login-form .error {
    color: #f15922;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: -10px;
    text-align: center;
}

.back-button {
    padding: 10px 20px;
    background: #ccc;
    color: #333;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
}

.back-button:hover {
    background: #bbb;
}

footer {
    text-align: left;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    color: #000;
    width: 100%;
}

footer a {
    color: #000;
    text-decoration: none;
}

.logos-container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 20px;
}

.logos-container .logo {
    max-width: 150px;
    margin: 0 10px;
}

