source img{
    height: 100vh;
}

.main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.backgroundImage {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.background{
    width: 100%;
    height: 100%;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
}

.formContainer {
    display: flex;
    flex-direction: column;
    position: relative;
    top: -20%;
    width: 14%;
    align-items: center;
}

.form-control{
    padding: 0;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #666666;
    border-radius: 0;
}

.form-control:focus{
    outline: 0;
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
    border-bottom: 1px solid #666666;
}

.logo img{
    width: 18rem;
    height: auto;
}

.btn{
    --bs-btn-font-size: 0.8rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.25rem;
    width: 6rem;
    border: 1px solid #666666 !important;
}


.overlay {
    position: fixed;
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 5;
    cursor: pointer;
    overflow: hidden;
    overflow-x: hidden;
    }

    .textContainer{
    text-align: center;
    position: relative;
    height: auto;
    width: 22rem;
    font-size: 1rem;
    padding-top: 22px;
    padding-bottom: 22px;
    font-family: MMB;
    color: #4e4e4e;
    background-image: linear-gradient(-15deg,rgb(255,255,255,255) 0%, rgba(214,214,214,255) 100%);;
    border-radius: 25px;
    }

   a{ 
    color: #666666;
    text-decoration: none;
    }

@media (max-width: 770px) {

    .formContainer{
        width: 80%;
    }

    .textContainer{
        width: 15rem;
    }
}

