.login-register-bg {
    background-image: url(../assets/images/register-page.jpeg);
    background-repeat: no-repeat;
    /* height: 100vh; */
    background-size: cover;
    background-position: 50% 0;
    display: flex;
    justify-content: flex-end;
    height: 100%;
}
.form-root {
    background: linear-gradient(
        270deg,
        #ffffff 52.55%,
        rgba(255, 255, 255, 0.35) 100%
    );
    height: 100%;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    width: 50%;
    padding: 90px 7%;
}
.auth-btn {
    padding: 12px 32px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    background-color: transparent;
    color: var(--fv-black-color);
}
.active-btn {
    background-color: var(--fv-green-dark-color);
    color: var(--fv-white-color);
}
.login-form-content {
    margin-top: 60px;
}
.login-form-content h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
}
.login-form-content p {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 35px;
}
.helper-text {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    margin-top: 0.5rem;
    margin-bottom: 0;
}
.action-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
}
.action-group a {
    color: var(--fv-black-color);
    font-weight: 300;
    text-decoration: underline;
}
.policy-group a {
    color: var(--fv-black-color);
    font-weight: 300;
}
.login-form-content .form-control {
    font-size: 1.125rem;
    border: 1px solid var(--fv-green-dark-color);
}
.auth-btn:hover {
    color: var(--fv-green-dark-color);
}
.active-btn:hover {
    color: var(--fv-white-color);
}
@media (max-width: 1024px) {
    .login-register-bg {
        background-position: left 50% top 30%;
    }
    .form-root {
        padding: 50px;
    }
    .action-group {
        margin: 1.5rem 0;
    }
}

@media (max-width: 991px) {
    .form-root {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .form-root {
        height: calc(100vh - 80px);
        padding: 20px;
    }
    .login-register-bg {
        background-image: none;
    }
}

@media (max-width: 400px) {
    .login-form-content h3 {
        font-size: 35px;
    }
    .login-register-bg .btn-group{
        width: 100%;
    }
    .login-register-bg .btn-group a{
        width: 50%;
    }
    .login-register-bg .btn-group a button:last-child{
    padding: 12px 10px;
    width: 100%;
    }
}