#forgotpassword{
    margin-top: -15px;
    font-size: 12px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    color: black;
}

.text-danger{
    color:#fa6969;
    font-size:0.8em;
}

.btn-submit:disabled {
	cursor: not-allowed;
	opacity: 0.3; 
}
.input-field.custom {
    position: relative;
}

.input-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--clr-primary);
    transition: 0.3s;
    position: relative;
}

.input-field.contact input {
    left: 70px;
    position: relative;
    width: calc(100% - 70px);
}

.inp-default {
    font-size: 16px;
    padding: 0;
    margin: 10px 5px 5px;
    background: none;
    border-radius: 0;
    border: none;
    color: #000000;
}

.input-field.focus {
    border-bottom: 2px solid var(--clr-primary);
    background: linear-gradient(0deg, #fff99a0f, transparent);
}

.input-field.contact .country-code {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 5px;
    display: flex;
    align-items: center;
    color: black;
    display: none;
}

.input-field.contact .country-code img {
    height: 24px;
    margin-right: 5px;
}

.input-field:not(.default) input:not(:placeholder-shown)~span.country-code, .input-field:not(.default).focus .country-code{
    display: flex;
    align-items: center;
}

.input-field.custom label {
    position: absolute;
    pointer-events: none;
    top: 11px;
    left: 5px;
    transition: top 0.35s ease;
    color:rgba(0, 0, 0, 0.75);
}

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

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

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

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

@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%;
    }
}



