body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Begin common text */

.back-btn {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
}

.back-btn .vngcls-icon {
    fill: #777777;
}

.back-btn .back-text {
    color: #777777;
    font-weight: 500;
    margin-left: 10px;
}

.page-title {
    font-weight: 800;
    font-size: 32px;
    color: #121613;
    margin-bottom: 5px;
}

.page-description {
    color: rgba(0, 0, 0, 0.5);
}

/* End common text */

/* Begin button */

.vngcls-btn.bg-large {
    height: 46px;
}

.signin-options {
    margin-top: 20px;
    border-top: 1px solid #E1E5ED;
    padding-top: 15px;
}

.signin-options-title {
    color: #A7A7A7;
    margin-bottom: 15px;
    text-align: center;
}

.signin-options-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 10px;
}

.option-btn {
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out !important;
    border: 1.5px solid #E1E5ED;
    color: #121613;
    height: 46px;
    background-color: white;
}

.option-btn:hover {
    background-color: #F5F5F5;
}

.option-btn:active {
    background-color: #E1E5ED;
}

.option-btn.disabled {
    cursor: not-allowed;
    background-color: #F5F5F5;
    color: #A7A7A7;
}

/* End button */

/* Begin footer */

.footer {
    background-color: #121613;
    color: #ffffff;
    padding: 30px 40px;
}

.footer p {
    margin: 3px 0;
}

.footer .white-logo {
    display: flex;
    align-items: center;
}

.footer .white-logo img {
    width: 120px;
}

.footer .company-name {
    font-size: 14px;
    font-weight: 600;
}

/* End footer */

/* Begin language select */

.lang-option {
    position: absolute;
    top: 20px;
    right: 20px;
}

.lang-option .lang-select-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 3px 5px;
    border: 0;
    border-radius: 3px;
    outline: 0;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
}

.lang-option .lang-select-btn .vngcls-icon {
    fill: #888888;
}

.lang-option .lang-select-btn svg:nth-child(2) {
    margin-left: 6px;
}

.lang-option .lang-select-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-option .lang-select-btn:active, .lang-option .lang-select-btn:focus {
    background-color: rgba(0, 0, 0, 0.075);
}

/* End language select */

/* Begin form */

.vngcls-input {
    height: 40px;
}

.vngcls-input-with-suffix {
    align-items: center;
    height: 40px;
}

.vngcls-input-with-suffix .vngcls-icon {
    width: 16px;
}

.vngcls-btn {
    width: 100%;
}

.vngcls-btn:disabled .vngcls-icon {
    fill: #ccc;
}

/* End form */

/* Begin notice */

.vngcls-notice.small {
    font-size: 13px;
}

/* End notice */

/* Begin responsive */

@media (min-width: 1200px) {
    .footer {
        padding: 30px 120px;
    }
}

@media (min-width: 1600px) {
    .footer {
        padding: 30px 200px
    }
}

/* End responsive */