body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;


}

form {
    width: 30%;
    background-color: var(--tropical-teal);
    display: flex;
    justify-content: center;
    margin-top: 2%;

}

fieldset {
    justify-content: center;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

fieldset div {
    display: flex;
    flex-direction: column;
}

fieldset>div>label {
    color: var(--light-green);
}

fieldset>div>input {
    background-color: var(--light-green);
}

fieldset>legend {
    color: var(--light-green);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.login_btn {
    color: var(--cerulean);
    background-color: var(--light-green);
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin-bottom: 40px;

}