main section .container{
    width: 400px;
}

main section{
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.forget-password{
    text-align: center;
    background-color: #fff;
    min-height: 250px;
    padding: 25px;
    display: flex;
    border-radius: 5px;
    flex-direction: column;
    justify-content: space-evenly;
}

label{
    display: block;
    margin-bottom: 10px;
    color: #fea53d;
}

h1{
    color: #fea53d;
}

input{
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: 1px solid #fea53d;
    padding-left: 10px;
    border-radius: 5px;
    outline: 0;
    color: #222;
    margin-bottom: 10px;
}

input::placeholder{
    color: #ccc;
}

.forget-password button{
    background-color: transparent;
    background-color: #fea53d;
    color: #FFf;
    height: 36px;
    border: 0;
    border-radius: 5px;
}

a{
    text-decoration: none;
    color: #fff;
}

main a:visited{
    color: #fff;
}