body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color:#d5f0c0a8 ;
}
header{
    background-color: #5dab1f;
    height: 60px;
    width: 100%;
    position: fixed;
     z-index: 10;
}
header h1 {
    margin-top: 7px;
}
.titulo{
    color: #ffff;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px;
   
}
.box{
    width: 380px;
    position: absolute;
    top: calc(50% + 30px);
    left: 50%;
    margin: 90px auto 0;
    transform: translate(-50%, -50%);
    background: #ffff;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.363);
}
img{
    width: 380px;
    padding-left: 0px;
    padding-top: 0px
}
.box h1{ 
color: black;
text-transform: uppercase;
font-weight: 200;
margin-top: 0px;
margin-bottom: 31px;
}
.box p{
    color: black;
    margin-bottom: -18px;
    }
.box input[type = "text"], .box input[type = "password"], .box input[type = "number"]{
 border: 0;
 background: none;
 display: block;
 margin: 20px auto;
 text-align: center;
 border: 2px solid #5dab1f;
 padding: 14px 10px;
 width: 200px;
 outline: none;
 color: black;
 border-radius: 24px;
 transition: 0.25s;
}


.box input[type = "text"]:focus{
width: 250px;
border-color: #2ecc71;  
}
.box input[type = "submit"]{
border: 0;
background-color: #ffff ;
/* background: none; */
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid  #2ecc71;
padding: 14px 40px;
outline: none;
color: black;
border-radius: 24px;
transition: 0.25s;
cursor: pointer;
margin-bottom: 40px;
}
.box input[type = "submit"]:hover{
background:#2ecc71;
}
footer img{
    padding-top: 125px;
}
select {
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #5dab1f;
padding: 14px 10px;
width: 220px;
outline: none;
color: black;
border-radius: 24px;
transition: 0.25s; 
}
select:focus {
    width: 250px;
    border-color: #2ecc71;  
}
textarea {
    width: 220px;
    height: 100px;
    border: 2px solid #5dab1f;
    border-radius: 25px;
    padding: 10px;
    outline: none;
    font-size: 16px;
    text-align: center;
    background-color: white;
}
textarea:focus {
    width: 250px;
    border-color: #2ecc71;  
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
}
a {
    text-decoration: none;
    color: white;
    background-color: #5dab1f;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

a:hover {
    background-color: #4a8e1a;
    transform: translateY(-2px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

