/* start: Login */
.login-section {
    padding: 160px 0 64px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.login-overlay {
    position: absolute;
    z-index: -1;
}
.login-overlay:nth-of-type(1) {
    top: 0;
    left: 0;
}
.login-overlay:nth-of-type(2) {
    top: 0;
    right: 0;
}
.login-box {
    max-width: 639px;
    margin: 0 auto;
    border-radius: var(--rounded-8);
    background-color: rgba(255, 255, 255, .56);
    backdrop-filter: blur(47.41px);
    padding: 40px;
}
.login-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border-radius: var(--rounded-full);
}
.login-brand-logo {
    width: 36px;
    height: 36px;
}
.login-title {
    font-size: var(--text-5xl);
    font-family: var(--font-dangrek);
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 8px;
}
.login-description {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 26px;
    max-width: 460px;
}
.login-form {
    margin-top: 20px;
}
.login-form-submit {
    margin-top: 12px;
}
.login-form-text {
    margin-top: 24px;
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--gray-700);
    line-height: 26px;
}
.login-form-text > a {
    color: var(--primary-500);
    text-decoration: none;
}
.login-form-group-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login-form-forget-password {
    color: var(--secondary-500);
    text-decoration: none;
}
/* end: Login */



/* start: Breakpoints */
@media screen and (max-width: 767px) {
    .login-box {
        padding: 20px 16px;
    }
    .login-brand {
        width: 52px;
        height: 52px;
    }
    .login-brand-logo {
        width: 32px;
        height: 32px;
    }
    .login-title {
        font-size: var(--text-3xl);
    }
    .login-description,
    .login-form-text {
        font-size: var(--text-base);
    }
}
/* end: Breakpoints */