.btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.3; 
}

#sign-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
}

.sign-left img{
    border-radius: 5px;
    border: 1px solid var(--clr-style-1);
    filter: var(--container-shadow);
}

@media only screen and (max-width:1023px){
    .sign-left, .sign-right{
        width: 100%;
        max-width: 500px;
        margin: auto !important;
    }

    .sign-left{
        margin-bottom: 10px !important;
    }
}

@media only screen and (min-width:1024px){
    .sign-left{
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .sign-left img{
        max-width: 1000px;
        margin: auto;
    }

    .sign-right{
        width: 40%;
    }
}

@media only screen and (min-width:1400px){
    #sign-wrapper{
        max-width: 85%;
        margin: auto;
        margin-top: 25px;
    }
}

@media only screen and (min-width:1600px){
    .sign-left{
        width: 70%;
    }

    .sign-right{
        width: 30%;
    }
}

.other-options{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 20px
}

.other-options span, .other-options a{ 
    color: white;
    font-size: 14px;
}


.other-options .link-register, .other-options .link-login{
    color: var(--clr-style-1);
    /* text-decoration: underline; */
    font-weight: 600
}

.other-options .link-forgot{
    color: white;
    /* text-decoration: underline; */
    font-weight: 600
}

.other-options .divider{
    display: flex;
    justify-content: space-around;
    gap: 5px;
    align-items: center;
}

.other-options .divider > div{
    width: 50px;
    height: 2px;
    background: #ffffff4d;
}

.sign-right{
    display: flex;
    align-items: center
}

.sign-right > div{
    width: 100%;
}