/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

body {
    background: url('./../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
}

.logo {
    height: 120px;
}

main {
    position: relative;
    flex-grow: 1;
}

.login-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-input {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-button {
    padding: 10px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

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

@media (max-width: 600px) {
    .login-container {
        width: 90%;
        bottom: 10px;
        right: 10px;
    }


footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: flex-end; /* Allinea il contenuto a destra */
    position: fixed;
    bottom: 0;
    width: 100%;

}

.footer-content {
    /* Aggiungi eventuali stili aggiuntivi se necessario */
	left: 50;
    width: 100%;
    padding: 20px;



}
