.main {
    min-height: 100%;
    /* background-image: url("../../assets/images/mapeople.png"); */
    background:#ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    position: relative;
}

.bg-overlay {
    /* background-color: var(--primary); */
    opacity: 0.8;
    position: absolute;
    inset: 0;
}

.content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth-form {
    width: 440px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: white;
    padding: 40px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    color: var(--text-primary);
    border:1px solid #cccccc;
    box-shadow: 5px 5px 10px #dddddd;
}

.auth-form .title {
    width: 100%;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    font-weight: bold;
}

.auth-form .form-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.auth-form .form-field label {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}

.auth-form .btn {
    font-size: 16px;
    line-height: 24px;
}

.auth-form .forgot-password {
    position: absolute;
    top: 0;
    right: 0;

    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    color: var(--primary);
    cursor: pointer;
}

.auth-form .register-link {
    align-self: center;
    size: 14px;
    line-height: 20px;
    text-align: center;
}
.auth-form .register-link a {
    text-decoration: underline;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .auth-form {
        margin-top: 140px;
    }
}

@media only screen and (max-width: 760px) {
    .auth-form {
        width: 100%;
        margin-top: 40px;
        padding: 32px 16px 32px 16px;
    }

    .auth-form .forgot-password {
        position: relative;
        align-self: center;
    }
}
