*{
    margin: 0;
    color: white;
}
:root{
    --principal-color: white;
    --background-color: rgb(209, 197, 197)
}
body{
    display: flex;
    flex-direction: column;
    background-image: url("https://media.istockphoto.com/id/1186553317/vector/fluent-motion.jpg?s=612x612&w=0&k=20&c=DxjeydHExk2YfT-LsRlTCPet2ceqdfRD1-uwjZpcWMY=");
    background-size: cover;
}
header{
    height: 9rem;
    background-color: var(--background-color);
    color: var(--principal-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 2rem;
}
.logo{
    display: flex;
    align-items:start;
    justify-content: start;
}
.logo img{
    border-radius: 50%;
}
header .titulo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: var(--principal-color);
    padding: 0.5rem 3.5rem;
    border-radius: 10px;
    box-shadow: 12px 12px 12px gray;
}

header h1 {
    color: black;
    font-size: larger;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    font-size: 2rem;
}
footer{
    display: flex;
    color: var(--principal-color);
    background-color: var(--background-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer ul{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none
}
footer li{
    padding: 0.5rem;
    border: solid white 2px;
    border-radius: 10px;
}
footer li a{
    color: var(--principal-color);
    text-decoration: none;
}
footer li:hover{
    padding: 0.5rem;
    border: solid var(--background-color) 2px;
    background-color: var(--principal-color);
    transform: scale(1.2);
    border-radius: 10px;
}
footer li a:hover{
    color: var(--background-color);
}
footer strong{
    color: var(--principal-color);
}
footer p{
    margin: 1rem;
}
main{
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.formulario{
    padding: 5rem;
    margin: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(235, 220, 220);
    border-radius: 10px;
    box-shadow: 5px 5px 5px 5px gray;
}
form{
    display: flex;
    flex-direction: column;
}
form *{
    color: black;
    margin: 0.2em;
}
form input[type="text"]{
    height: 2rem;
    border-radius: 10px;
    border: 1px solid white;
}
#passwordInput{
    height: 2rem;
    border-radius: 10px;
    border: 1px solid white;
}
.btns{
    display: flex;
    flex-direction: column;
}
.btns input{
    background-color: var(--background-color);
    height: 2rem;
    border-radius: 10px;
    box-shadow: 2px 2px 2px;
    margin: 0.2em;
    border: 1px solid white;
    margin: 0.5rem;
}
.btns a{
    background-color: var(--background-color);
    height: 2rem;
    border-radius: 10px;
    box-shadow: 2px 2px 2px;
    margin: 0.2em;
    text-decoration: none;
    text-align: center;
    align-items: center;
    margin: 0.5rem;
}