* {
    margin: 0;
    padding: 0;
}
.forgotpassword-page {
    height: 100vh;
    width: 100%;
    background-color: whitesmoke;
}
.forgotemail {
    background-color: white;
    box-shadow: 2px 3px 15px 3px #c0bcbc;
    height: 30vh;
    width: 40%;
    margin: 5% 30%;
    padding: 1rem;
    position: fixed;
    text-align: center;
}
.forgotemail input {
    width: 90%;
    height: 45px;
    border-radius: 5px;
    padding-left: 1rem;
    border: 2px solid lightgray;
    font-size: 17px;
    margin: 1rem;
}
.forgotemail button {
    width: 30%;
    height: 45px;
    border-radius: 5px;
    font-size: 15px;
    margin: 1rem;
    border: 1px solid whitesmoke;
    background-color: #6bdd6b;
}
.forgotemail button:hover {
    background-color: green;
    cursor: pointer;
}