* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family) !important;
}


.w-120px {
    width: 120px;
}

.login-container {
    display: flex;
    min-height: 100vh;
    padding: 24px;
    background-color: #fff;
    gap: 24px;
}

.login-wrapper {
    width: 50%;
    padding: 24px 32px 0px 32px;
    display: flex;
    flex-direction: column;
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-select {
    width: 100%;
    max-width: max-content;
    color: #050505;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: '';
}

select::-ms-expand {
    display: none;
}

select:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

.form-section {
    padding: 117px 69px 30px 69px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 150px);
}

.heading-class {
    color: #050505;
    font-feature-settings: 'liga' off;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 16px;
}

.subtitle {
    color: #666;
    margin-bottom: 32px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;

}

.form-group {
    margin-bottom: 32px;
    position: relative;
}

.form-label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
}

.email-icon {
    position: absolute;
    left: 12px;
    top: 41px;
}

.submit-btn {
    width: 100%;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    border-radius: 12px;
    background: #000;
    padding: 16px 32px;
    box-shadow: none;
    border: none;
}

.submit-btn:hover {
    background-color: #000;
}

.image-section {
    width: 50%;
    position: relative;
    height: calc(100vh - 48px);
    margin: 0;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}


/* otp page */
.pagination-btn {
    border-radius: 8px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    display: flex;
    padding: 16px 32px 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #050505;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 16px;
}

.otp-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.otp-input {
    width: 69px;
    height: 64px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #050505;
    background: #F5F5F5;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border: 1px solid #1781FF;
    background: #FFFFFF;
    box-shadow: 0px 0px 0px 4px rgba(129, 97, 233, 0.20);
}

.otp-input.has-value {
    border: 1px solid #191919;
    background: #FFFFFF;
}

.otp-input.error {
    border: 1px solid #F13944;
    background: #FFECEA;
    color: #B2242E;
}

.otp-input::-webkit-inner-spin-button,
.otp-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input[type=number] {
    -moz-appearance: textfield;
}

.invalid-class {
    color: #B2242E;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: none;
}

.invalid-class.show {
    display: block;
}

.expiry-text {
    display: block;
}

.expiry-text.hide {
    display: none;
}

@media (max-width: 1024px) {
    .image-section {
        display: none;
    }

    .login-wrapper {
        padding: 32px;
        width: 100%;
    }

    .form-section {
        height: 100%;
    }
}

@media (max-width: 768px) {

    .login-container {
        padding: 24px 9px;
    }

    .login-wrapper {
        padding: 0px;
    }

    .form-section {
        padding: 40px 22px;
    }
}