body {
    /* font-family: 'Segoe UI', sans-serif; */
    background-color: #f9f9f9;
    font-family: 'Vazirmatn', sans-serif;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    max-width: 960px;
    width: 100%;
}

.left-panel {
    background-color: #48c4b7;
    color: white;
    padding: 3rem;
}

.left-panel h2 {
    font-weight: bold;
}

.left-panel p {
    margin-top: 2rem;
    line-height: 1.7;
}

.left-panel img {
    max-height: 200px;
    margin-top: 3rem;
}

.right-panel {
    direction: rtl;
    padding: 3rem;
}

.btn-google {
    border: 1px solid #48c4b7;
    color: #48c4b7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #48c4b7;
}

.btn-login {
    background-color: #48c4b7;
    border: none;
}

.btn-login:hover {
    background-color: #3aa99f;
}

.form-text a {
    font-size: 0.875rem;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    cursor: pointer;
}
.logo{
    width: 200px;
}
.form-control{
    direction: ltr;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* ---------- OTP boxes ---------- */
.otp-wrapper{
    display:flex;justify-content:center;gap:1rem;margin:2rem 0;direction:ltr;
}
.otp-box{
    width:58px;height:58px;border:2px solid #48c4b7;border-radius:0px;
    text-align:center;font-size:1.6rem;font-weight:700;outline:none;
    transition:border-color .2s;
}
.otp-box:focus{border-color:#3aa99f}

/* تایمر */
#otp-timer{font-weight:700;text-align:center;margin-top:.5rem}
@media (max-width: 991.98px){
    .otp-box{
        width: 51px;
        height: 52px;
    }
    .otp-wrapper {

        gap: 4px;

    }
}
.form-control,.btn,.form-select{

    /* border-radius:0px; */
  
  }
