a{
    text-decoration: none;
    color: var(--color-purple-4);
}
.al-auth-page-wrapper {
    align-items: center;
    background-size: contain;
    display: flex;
    padding: 50px 0;
    box-sizing: border-box;
    flex-direction: column;
    height: auto;
    justify-content: center;
    min-height: 100vh;
}
.al-auth-form-wrapper
{
    width: 25%;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    color: #2c3534;
}
.text-2c3534
{
    color: #2c3534;
}
.al-input__element {
    background-color: #fff;
    border-color: #e6e8ec;
    border-radius: 7px;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    display: block;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    padding: 12px 15px;
    text-overflow: ellipsis;
    transition: .2s ease;
    width: 100%;
}
.al-input__element:focus {
    border-color:#5156be;
    outline: #cab7fb solid 3px;
}
.text-midGray2 {
    color: #777e90;
}
.whitespace-pre-line {
    white-space: pre-line
}


.checkbox-wrapper-65 *,
.checkbox-wrapper-65 ::after,
.checkbox-wrapper-65 ::before {
    box-sizing: border-box;
}
.checkbox-wrapper-65 .cbx {
    position: relative;
    display: block;
    float: left;
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background-color: #bbbbbb;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -1px 1px rgba(0,0,0,0.15);
    transition: all 0.15s ease;
    flex-shrink: 0;
}
.checkbox-wrapper-65 .cbx svg {
    position: absolute;
    top: 0;
    left: 3px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 17;
    stroke-dashoffset: 17;
    transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-65 {
    user-select: none;
}
.checkbox-wrapper-65 label {
    display: inline-block;
    cursor: pointer;
}
.checkbox-wrapper-65 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}
.checkbox-wrapper-65 input[type="checkbox"]:checked + .cbx {
    background-color: #606062;
    background-image: linear-gradient(#5156be, #5156be);
}
.checkbox-wrapper-65 input[type="checkbox"]:checked + .cbx svg {
    stroke-dashoffset: 0;
    transition: all 0.15s ease;
}
.tr-13px
{
    top: 13px;
    right: 13px;
}
.gsi-material-button
{
    border: #e6e8ec solid thin;
    border-radius: 7px;
    padding: 12px 15px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}
.gsi-material-button img
{
    height: 20px;
}
.gsi-material-button:hover
{
    background: #f7f7f7;
}
.error-border
{
    border: red solid thin;
}

@media (max-width: 767px) {
    .al-auth-form-wrapper {
        width: 95%;
    }
}
/* iPad Mini Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: portrait) {
    /* CSS cho iPad Mini dọc */
    .al-auth-form-wrapper {
        width: 50%;
    }
}

/* iPad Mini Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    /* CSS cho iPad Mini ngang */
    .al-auth-form-wrapper {
        width: 95%;
    }
}
/* iPad Air Portrait */
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: portrait) {
    /* CSS cho iPad Air dọc */
    .al-auth-form-wrapper {
        width: 50%;
    }
}

/* iPad Air Landscape */
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {
    /* CSS cho iPad Air ngang */
    .al-auth-form-wrapper {
        width: 50%;
    }
}
/* iPad Pro 12.9 Portrait */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
    /* CSS cho iPad Pro 12.9 dọc */
}
/* iPad Pro 12.9 Landscape */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
    /* CSS cho iPad Pro 12.9 ngang */
    .al-auth-form-wrapper {
        width: 50%;
    }
}