.main-box {
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.content-bar{
    width: calc(100% - 350px);
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.img-login-content{
    width: 70%;
    padding-top: 20px;
}


.form-bar {
    width: 330px;
}

.form-container {
    padding: 20px;
    background-color: var(--main-bg);
    border-radius: 14px;
    font-size: 15px;
    overflow: hidden;
}

.form-logo {
    /* height: 40px */
}

.form-header-icon {
    padding-top: 5px;   
    display: flex;
    justify-content: center;
    fill: gray;
    color: gray;
    font-size: 40px;
}

.form-title {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 25px;
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
}

.form-title-2 {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 10px;
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
}

.form-title-3 {
    font-size: 14px;
    color: gray;
    padding-top: 0;
    padding-bottom: 20px;
    text-align: center;
}

form {
    margin: 0;
    padding: 0;
}

.form-text {
    font-size: 12px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    color: var(--main-color);
}

.form-element {
    display: flex;
    align-items: center;
    position: relative;
    outline: none;
    margin-bottom: 10px;
    overflow: hidden;
    color: var(--main-color);
    transition: var(--transition-1);
    /* line-height: 34px; */
}

.form-element,
.form-input{
    height: 34px;
}

.form-input {
    height: 100%;
    width: 100%;
}

#form-password {
    padding-right: 34px;
}

.form-icon {
    width: 34px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: absolute;
    fill: gray;
    color: gray;
    overflow: hidden;
}

.form-icon-passw {
    right: 0;
    top: 0;
    cursor: pointer;
}

.user-contract {
    color: var(--main-color-2);
    /* white-space: nowrap; */
    cursor: pointer;
    text-decoration: none;
}

.user-contract:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 34px;
    font-weight: 600;
    font-size: 15px;
    margin: 8px 0px;
}

.on-button {
    /* display: inline-block;
    pointer-events: auto; */
    width: 100%;
}

.help-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.help-text{
    font-size: 14px;
    color: gray;
}

.auth-div {
    margin-top: 20px;
}

.text-auth {
    font-size: 14px;
    color: gray;
    margin: 5px 0;
    text-align: center;
}

.auth-about {
    font-size: 12px;
    color: gray;
    padding-top: 0;
    padding-bottom: 5px;
    text-align: center;
}


/* ///// --- responsive --- ///// */

@media(max-width: 1024px) {

    .content-bar{
        display: none;
    }

    .form-element,
    .form-icon,
    .form-input,
    .btn {
        height: 40px;
    }

    .form-icon {
        line-height: 40px;
    }

    .form-input,
    .text-auth {
        font-size: 15px;
    }

    .btn {
        font-size: var(--font-medium);
    }
    
}

@media(max-width: 450px) {

    .form-bar{
        width: 100%;
    }

    .header-navbar{
        /* display: none; */
    }

    .form-element,
    .form-icon,
    .form-input,
    .btn {
        height: 44px;
    }

    .form-icon{
        line-height: 44px;
    }

    .form-input{
        font-size: 15px;
    }

    .btn{
        font-size: var(--font-medium);
        border-radius: 8px;
    }

    .form-icon{
        font-size: var(--font-medium);
    }

}


.mona-lisa {
    width: 12em;
    height: 12em;
}

.mona-lisa path {
    stroke: var(--main-color);
    stroke-width: 0.6px;
    animation: dashArray 4s ease-in-out infinite, dashOffset 4s linear infinite;
}

@keyframes dashArray {
    0% {
        stroke-dasharray: 0 1 359 0;
    }

    50% {
        stroke-dasharray: 0 359 1 0;
    }

    100% {
        stroke-dasharray: 359 1 0 0;
    }
}

@keyframes dashOffset {
    0% {
        stroke-dashoffset: 365;
    }

    100% {
        stroke-dashoffset: 5;
    }
}

.td-x {
    width: 30%;
}

.td-2 {
    width: 40%;
}

.center-div {
    width: 100%;
    display: flex;
    justify-content: center;
}

.td-forget {
    font-size: 14px;
    width: 100px;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.text-forget {
    color: gray;
    font-size: 13px;
    transition: var(--transition-1);
    text-align: center;
}

.text-forget:hover {
    color: var(--main-color);
}

.table-forget {
    width: 100%;
    margin-bottom: 2px;
}
