:root {
    --bg-gradient-orange: linear-gradient(180deg, rgba(55, 65, 98, 0.9), rgba(55, 65, 98, 0.9));
    --bg-gradient-orange-1: linear-gradient(180deg, rgba(55, 65, 98, 0.9), rgba(55, 65, 98, 0.9));
    --bg-gradient-blue: linear-gradient(
        90deg,
        rgba(42, 19, 125, 1) 50%,
        rgba(109, 29, 255, 1) 100%
    );
}

/* :root {
    --bg-gradient-orange: linear-gradient(
        90deg,
        rgba(252, 128, 45, 1) 50%,
        rgba(255, 157, 92, 1) 100%
    );
    --bg-gradient-orange-1: linear-gradient(
        360deg,
        rgba(252, 128, 45, 1) 0%,
        rgba(255, 157, 92, 1) 100%
    );
    --bg-gradient-blue: linear-gradient(
        90deg,
        rgba(42, 19, 125, 1) 50%,
        rgba(109, 29, 255, 1) 100%
    );
} */

.app-bg-primary {
    background: var(--bg-gradient-orange-1);
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
}
.side {
    height: 90vh;
    aspect-ratio: 1/2;
}
.login-img {
    width: 100%;
}
.login-side {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: white;
}
.logo {
    background: rgb(93, 172, 218);
    width: 100px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: black;
}
.login-wrapper {
    width: 100%;
}
.login-text {
    color: black;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin-bottom: 16px;
}
.form-control-login {
    border-radius: 4px;
    border: none;
    width: 100%;
    color: white;
    opacity: 0.9;
    font-size: 14px;
    padding: 8px 12px;
    background: var(--bg-gradient-orange);
}
.remember-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

input.form-control-checkbox {
    border-radius: 8px;
    width: 16px;
    height: 16px;
}
input.form-control-checkbox::before {
    border-color: #fc802d;
}
.custom-control-label {
    font-size: 14px;
}
.submit-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login-btn {
    border: 1px solid #fc802d;
    background: white;
    border-radius: 8px;
    padding: 6px 24px;
    font-weight: 600;
    color: black;
}
.login-btn:hover {
    background: var(--bg-gradient-orange);
    color: white;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px !important;
}
.question-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2a127d;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}
.policy-group {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: black;
    margin-top: 24px;
    font-weight: 600;
}
.hotline-text {
    color: #2a127d;
}
/* test */
.hidden {
    display: none;
}

/* common */
input:focus-visible {
    outline: none;
    border: none;
}
input::placeholder {
    color: white;
}

input[type="checkbox"] {
    border-color: #fc802d;
    stroke-width: 5px;
}
.divider {
    margin-left: 40px;
    margin-right: 40px;
}

/* responsive */
@media only screen and (max-width: 768px) {
    .img-side {
        display: none;
    }
}
