body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    margin: 0;
}
.title-text{
    color: #f7a700;
}
.auth-wrapper {
    min-height: 100vh;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    max-width: 950px;
    width: 100%;
    min-height: 90vh;
}

.auth-right {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.auth-left {
    flex: 1;
    background: url("../img/auth-bg.jpg") no-repeat center center/cover;
    position: relative;
}
.auth-left .overlay-text {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: rgba(0,0,0,0.4);
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
}
.auth-right {
    flex: 1;
    padding: 40px;
}
.logo {
    text-align: center;
}

.logo h2 {
    font-weight: 600;
    font-size: 24px;
    color: #f7a700;
    margin-top: 10px;
}
.nav-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 20px;
}
.nav-tabs .nav-link {
    border: none;
    color: #333;
    font-weight: 500;
}
.nav-tabs .nav-link.active {
    border-bottom: 2px solid #f7a700;
    color: #f7a700;
}
.form-control, .form-select {
    border-radius: 8px;
    margin-bottom: 15px;
}
.btn-custom {
    background: #f7a700;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
}
.btn-custom:hover {
    background: #e09500;
}
.forgot {
    text-align: right;
    font-size: 14px;
    margin-bottom: 10px;
}

.iti.iti--separate-dial-code {
    width: 100%;
}

.error-message {
    color: #ff0000;
    font-size: 12px;
}

.authencation-screens-logo {
    width: 100%;
    height: 75px !important;
}

.auth-tabs .nav-link.active{
    color: #f7a700;
}
.nav-link:hover{
    background-color: #f7a700;
    color: #fff;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-box {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border-radius: 8px;
    border: 2px solid #ddd;
    transition: all 0.3s ease-in-out;
}

.otp-box:focus {
    border-color: #f7a700;
    box-shadow: 0px 0px 6px rgba(247, 167, 0, 0.5);
    outline: none;
}

.btn-verify-otp {
    width: 50%;
    padding: 10px;
    height: 100%;
    background: #fff;
    color: #f7a700;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #f7a700;
}
.btn-verify-otp:hover {
    background: #f7a700;
    color: #fff;
}


.resend-code-link:hover {
    color: #f7a700 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    font-weight: 600 !important;
}
