.login-section {
    padding: 30px 0;
}
.inner-component {
    border-radius: 4px;
    border: 1px solid #f3f3f3;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);
    padding: 50px 42px;
}
.inner-component .entry-title {
    color: var(--primary-color);
    font-family: "Poppins-Semibold";
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}
.inner-component .sub--title {
    color: var(--secondary-color);
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 500;
}
.inner-component .form-wrapper {
    margin-top: 50px;
}
.inner-component .input-group {
    border-radius: 30px;
    border: 1px solid #c7c6c6;
    overflow: hidden;
}
.inner-component .input-group .form-control {
    border: none;
    margin-left: 50px;
    color: var(--secondary-color);
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 500;
}
.form-wrapper .form-control {
    border-radius: 30px;
}
.inner-component .country-code {
    position: absolute;
    z-index: 3;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 1px;
}
.inner-component .terms-and-condition {
    color: var(--secondary-color);
    font-family: "Poppins-Medium";
    font-size: 14px;
    font-weight: 500;
    margin-top: 24px;
}
.inner-component .terms-and-condition a {
    color: var(--theme-color);
    font-family: "Poppins-Semibold";
    font-weight: 600;
}
.inner-component .login-btn {
    margin-top: 60px;
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 500;
}
.separator {
    color: var(--secondary-color);
    font-family: "Poppins-Medium";
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    position: relative;
    margin: 20px 0;
}
.separator::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--stroke);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.separator span {
    position: relative;
    display: inline-block;
    padding: 10px;
    background-color: var(--white);
}
.login-as-guest {
    border-radius: 30px;
    border: 1px solid #c7c6c6;
    display: block;
    text-align: center;
    padding: 12px 10px;
    color: var(--primary-color);
    font-family: Poppins-Medium;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}
.another-account,
.resend-otp {
    color: var(--secondary-color);
    font-family: "Poppins-Medium";
    font-size: 14px;
    font-weight: 500;
}
.another-account a {
    color: var(--theme-color);
    font-family: "Poppins-Bold";
    font-weight: 600;
}

/* Otp Field */
.otp-input-fields {
    width: auto;
    display: flex;
    gap: 24px;
}
.otp-input-fields input {
    width: 50px;
    height: 68px;
    background-color: #fff;
    text-align: center;
    outline: none;
    box-shadow: none;
    font-size: 1.4rem;
    border-radius: 4px;
    border: 1px solid var(--stroke);
}
.otp-input-fields input::-webkit-outer-spin-button,
.otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.otp-input-fields input[type="number"] {
    -moz-appearance: textfield;
}
.otp-input-fields input:focus {
    border-width: 2px;
    font-size: 20px;
}

.error-fields input{
    border-color: #f00;
}

.inner-component.otp-component {
    padding-top: 24px;
}




.pwd-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    z-index: 7;
    cursor: pointer;
    font-size: 18px;
    color: var(--secondary-color);
}

@media(max-width: 575.98px){
    .inner-component{
        padding: 20px;
    }
    .inner-component .sub--title{
        font-size: 14px;
    }
}
