@font-face {
    src: url(./fonts/IRANSans/IRANSans\(FaNum\)_Light.ttf);
    font-family: IRANSansLight;
}

@font-face {
    src: url(./fonts/IRANSans/IRANSans\(FaNum\)_Black.ttf);
    font-family: Fedra;
}

* {
    direction: rtl;
    /* font-family: Fedra; */
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    border: 0px;
    text-align: right;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: IRANSansLight;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 1rem;
}

.logo {
}

.sign-login {
    display: flex;
    gap: 1rem;
    font-size: 1.25rem;
}

.form-image {
    position: relative;

    width: 40%;
    background: #ddd;
}

.form-image img {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.input {
    font-family: IRANSansLight;
    padding: 0.5rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    height: 56px;
}

.input:focus {
    border: 2px solid #0b2c6e;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 320px;
    color: #0b2c6e;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 64px;
    height: 48px;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem;
    font-family: IRANSansLight;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:disabled {
    background: #c5c5c5;
}

.btn-default {
    border: 1px solid;
    border-color: #0b2c6e;
    color: #0b2c6e;
}

.btn-primary {
    box-shadow: 0px 1px 5px rgba(100, 116, 139, 0.12);
    box-sizing: content-box;
    /* width: 238px; */
    height: 32px;
    padding: 0.5rem 1.5rem;
    background-color: #0ac974;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.btn-primary:hover {
    text-decoration: none;
    background-color: #08a15d;
    box-shadow: 0px 1px 5px rgba(100, 116, 139, 0.12);
}

.forgot-password {
    color: #0b2c6e;
}

.otp-field {
    direction: ltr;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.otp-field input {
    width: 20%;
    height: 56px;
    /* font-size: 32px; */
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    /* border: 1px solid #ddd; */
    box-shadow: 0 0 2px 2px #ddd;
    background: #fff;
    font-weight: bold;
    color: #0b2c6e;
    outline: none;
    transition: all 0.1s;
}

.otp-field input:focus {
    /* border: 2px solid #0b2c6e; */
    box-shadow: 0 0 2px 2px #0b2c6e;
    /* border: 2px solid #0b2c6e; */
}

.disabled {
    opacity: 0.5;
}

@media (min-width: 1536px) {
    body {
        flex-direction: row;
    }
}

.input-validation {
    color: red;
}

.counter, .verification-alert > p, .forgot-password, .input-validation {
    text-align: center;
}

.resend-button {
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    font-family: IRANSansLight;
}