body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    font-size: 18px;
    background-image: url("/img/sfondo.jpg");
    background-size: cover;
}

form {
    background-color: rgba(255, 255, 255);
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
}

.grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="date"] {
    border: none;
    border-bottom: 2px solid #1884cc;
    outline: none;
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 20px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus {
    border-bottom-color: #145ea8;
}

#button {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 7px;
    margin-top: 25px;
    margin-bottom: 20px;
    background-color: #1884cc;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#button:hover {
    background-color: #145ea8;
}

#togglePassword{
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    background-color: #1884cc;
    border-radius: 7px;
    border: none;
    color: white;
    padding: 5px;
}

#togglePassword:hover{
    background-color: #145ea8;
}

img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 50%;
    border: 4px solid #1884cc;
}
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1884cc;
    color: white;
    text-align: center;
    padding: 10px 0; /* Add padding for spacing */
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: inline-block; /* Display social media links horizontally */
    margin-right: 30px; /* Add margin between social media links */
}

footer p {
    margin: 5px 0; /* Add margin to separate copyright notice from social media links */
}

