body {
    min-height: 100vh;
    width: 100vw;
    background: url(../img/Login-BG.png) no-repeat center center/cover;
    padding: 1rem;
    display: grid;
    place-items: center;
}

.form-container {
    width: 100%;
    max-width: 630px;
    background-color: var(--light);
    border-radius: var(--radius-l);
    padding: 5rem 3rem;
    font-size: 18px;
}

.form-container form{
    display: grid;
    justify-items: center;
    gap: 3rem;
}

.form-container .heading{
    text-align: center;
}

.form-container .heading h1{
    font-weight: bold;
}

.form-group{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group .form-group__heading{
    display: flex;
    justify-content: space-between;
}

.form-container .btn{
    width: 100%;
    padding: 1rem 2rem;
    font-size: 20px;
    text-align: center;
}

.logo{
    object-fit: contain;
}

@media screen and (max-width: 480px){
    .form-container{
        padding: 4rem 2rem;
    }
    
}