body{
    font-family: sans-serif;
    margin: 0;
    color: #fbaf35;
    text-transform: capitalize;
}
.container{
    background-image:url(llama-uanl.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: absolute;
}

h1{
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 40px;
}
form{
    position: relative;
    top: 200px;
    margin: auto;
    max-width: 500px;
    min-width: 100px;
    height:auto;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #fbaf35;
    box-shadow: 0 0 40px 5px #333;
    gap:20px;
    
}
input{
    width: 95%;
    padding: 10px;
    padding-left: 5px;
    margin-bottom: 15px;
    color: #fbaf35;
    background-color:transparent;
    border: 1px solid #fbaf35;
    border-radius: 10px;
    font-size: 18px;
}

input::placeholder{
    color: #fbaf35;
}
label{
    line-height: 1.3;
}
input[type="submit"]{
    width: 98.7%;
    
}

