body {
    background: #1A7B6C;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    background: rgb(240, 240, 240);
    border-radius: 14px;
    width: 350px;
    padding: 30px;
    text-align: center;
}
h2 {
    margin-bottom: 20px;
    color: #1A7B6C;
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
}
input[type="email"] {
    width: 320px;
    padding: 10px;
    border: 1px solid rgb(167, 167, 167);
    border-radius: 6px;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 15px;
}
button {
    background-color: #1A7B6C;
    color: rgb(240, 240, 240);
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: #104e45;
}
p {
    margin: 10px 0;
    color: rgb(240, 240, 240);
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}