body {
    background-color: #E9E5E0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}
body form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title {
    font-family: 'K2D', serif;
    font-size: 64px;
    color: #0F2745;
}
.forgot-pw-info {
    font-family: 'K2D', serif;
    font-size: 20px;
    color: #0F2745;
    text-align: center;
    max-width: 50vw;
}
.error {
    font-family: 'K2D', serif;
    font-size: 28px;
    color: red;
    background-color: #ffb8b8;
    border-radius: 20px;
    height: 48px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}
.success {
    font-family: 'K2D', serif;
    font-size: 28px;
    color: #166916;
    background-color: #d0ffb3;
    border-radius: 20px;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    text-align: center;
    max-width: 60vw;
}
.form-label {
    font-family: 'K2D', serif;
    color: #0F2745;
    font-size: 28px;
    display: flex;
    flex-direction: column;
    margin: 10px;
}
.form-label input {
    width: 50vw;
    background-color: #DFD5C9;
    border: none;
    border-radius: 20px;
    height: 48px;
    font-family: 'K2D', serif;
    font-size: 28px;
    color: #0F2745;
    padding-left: 5%;
}
.submit {
    background-color: #1393E4;
    border: none;
    border-radius: 20px;
    padding: 10px 30px;
    color: white;
    font-family: 'K2D', serif;
    font-size: 28px;
    margin: 10px;
    cursor: pointer;
}