/*General CSS for Assigment 2*/
body {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", 
    Helvetica, Arial, "Lucida Grande", sans-serif;
    margin: 0%;
    min-height: 100dvh;
    background-color: #F4FAFE;

}


/*main area general*/
main {
    padding : 2rem;
    background-color: #F6F1E9;
    align-items: center;
}

/*Buttons General Style*/
button {
    background-color: #FF9A00;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.2rem 0.1rem;
    cursor: pointer;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease;

    &:hover {
        background-color: #041e24;
    }
}
/*Form General Style*/
form {
    display: flex;
    flex-direction: column;
    max-width: 37.5rem;
    margin-left: 0;
    margin-right: auto;

    label {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    input, textarea {
        padding: 0.5rem;
        border: 1px solid #ccc;
        border-radius: 0.3rem;
        font-size: 1rem;
    }

    textarea {
        resize: vertical;
        min-height: 6.25rem;
    }
}
