body{
    background-color: rgb(47,93,94);
    margin: 0;
    padding: 0;
    font-family: "lora", serif;
}
.main-div{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
}
form{
    background-color: white;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}
label{
    color: rgb(47,93,94);
    align-self: flex-start;
    font-weight: bold;
    margin-bottom: 5px;

}
img{
    margin-top: 10px;
    margin-bottom: 20px;
    height: auto;
    max-width: 100%;

}
.input-div{
    width: 100%;
}
.field{
    padding: 13px;
    width: 100%;
    margin-bottom: 13px;
    border: none;
    background-color: rgb(223, 253, 223);
    border-radius: 5px;
    color: rgb(47,93,94);
    box-sizing: border-box;
}
.field:hover{
    border: 2px solid ;
}
.field:focus{
    border: 2px solid rgb(47,93,94);
    outline: none;
}
button{
    background-color: rgb(47,93,94);
    border-radius: 30px;
    padding: 12px 20px;
    cursor: pointer;
    border: none;
    color: black;
    color: white;
    margin-top: 5px;
    transition: background-color 0.3s;
}
button:hover{
    background-color: rgb(120, 191, 120);
}

footer{
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px 10px;
    flex-direction: column;
}
h4{
    color:white;
    font-weight: bold;
    margin-top: -5px;
    margin-bottom: 6px;
    font-size: 16px;
    text-align: center;
}
hr{
    margin-top: 70px;
    border: 1px solid white;
}
p{
    font-size: 13px;
    margin: 5px 0px;
}
a{
    text-decoration: none;
    color: white;
}
@media(min-width:768px){
    form{
        max-width: 450px;
    }
}
@media(min-width:1024px){
    form{
        max-width: 500px;
    }
}
