﻿* {
    padding:0;
    margin:0;
    box-sizing: border-box;
}


body {
    width: 100vw;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.form-container {
    width: 95%;
    max-width: 500px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #9cf3b1;
    border-radius:5px;
    display: flex;
    flex-direction: column;
    gap:1.5rem;
}


.form {
    width:100%;
    display:flex;
    flex-direction:column;
    gap:1.5rem;
}


.form-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    gap: 0.5rem;
}



@media (width < 900px){
    body {
        background-size: auto 100%;
        background-position: center;
    }
}