body {
    background-color: #F9F9F9;
    font-family: "Lato" !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
button, input, optgroup, select, textarea{
    font-family: "Lato" !important;
}

.auth-container {
    max-width: 430px;
    width: 100%;
    margin: 0px auto 0;
    padding: 0px 25px 40px 25px;
    background-color: #fff;
    border-radius: 10px;
    /* height: 100dvh; */
    /* overflow-y: auto; */
    overflow: hidden;
}

.bubble {
    margin: -120px 0px -70px -25px;
}

.login-heading {
    font-family: Lato;
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
    color: #000000;
}

p {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.login-form .form-group {
    /* background-color: #f6f6f6; */
    width: 100%;
    margin-bottom: 25px;
}

.login-form .form-group input {
    font-family: "Lato" !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    padding: 15px 20px;
    background-color: #f6f6f6;
    border: none;
    outline: none;
    box-shadow: none;
    border: 1px solid #0000001A;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #0000000D;
}
.login-form .form-group input::placeholder{
    font-family: "Lato" !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
}

.auth-submit-btn {
    background-color: #292526;
    font-family: Lato;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    transition: all 0.7s ease-in-out;
}

.auth-submit-btn:hover {
    background-color: white;
    color: #292526;
    border: 1px solid #292526;
}

.social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-login .icon-btn {
    width: 52px;
    height: 52px;
    background-color: #F9F9F9;
    border: 1px solid #0000001A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-password {
    font-family: Lato;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 13px;
}

@media (max-width: 540px) {
    .bubble {
        margin: 0px 0px -70px -25px;
    }

    .bubble img {
        height: 104px;
        /* width: 100px; */
    }
}