body {
    background-color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 50%;
}

img {
    height: 100px;
    margin-bottom: 50px;
    margin: 0 auto;
}

.email-field {
    position: relative;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 6px 2px rgba(0, 0, 0, 0.25);
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: 1.2rem;
    color: #555;
    font-family: 'poppins', sans-serif;
    margin: 1rem 10px;
}


.btn {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    outline: none;
    border: none;
    box-shadow: 0px 6px 2px rgba(0, 0, 0, 0.25);
    background-color: #06CF90;
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

.button:hover {
    background-color: #06CF90;
    color: white;
}