body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgb(35, 80, 22);
    color: white;
    padding: 1rem;
    text-align: center;
}

nav a {
    color:white;
    text-decoration: none;
    margin: 15px;
}

nav a:hover {
    text-decoration: underline rgb(241, 245, 241);
    font-weight: bolder;
    transition: all 0.3s;
}

main {
    padding: 20px;
}

h2 {
    text-align: center;
    color: rgb(19, 19, 19);
}

form {
    background-color: rgb(35, 80, 22);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 512px;
    margin: auto;
    border-radius: 10px;
    padding: 20px;
    color: white;
}

form label {
    margin: 10px 0 5px;
}

form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

form .submit {
    background-color: white;
    color: rgb(35, 80, 22);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

footer {
    background-color: rgb(35, 80, 22);
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

img{
    width: 30px;
}

#holis{
    text-decoration: none;
    color: rgb(246, 247, 245);
    background:linear-gradient(to right, rgb(35, 80, 22),rgb(107, 218, 42));
    width: fit-content;
    display: flex;
    gap: 5px;
    align-items: center;
    border-radius: 3px;
    transition: all 60ms;
}
#holis:hover{
    scale: 1.2;
    opacity: 0.6;
}

.espacio {
    margin: 15px 0; 
}

.submit {
    background-color: rgb(35, 80, 22);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer; 
    transition: background-color 0.32;
}

.submit:hover {
    background-color: rgba(110, 112, 109, 0.603); 
}