@font-face {
    font-family: "Vazir";
    src: url(../fonts/Vazir.ttf);
}
*{
	font-family: "Vazir";
}
    .body {
        margin: 0;
        background: url(../images/background/login.jpg) no-repeat center center / cover;
        display: flex;
        justify-content: center;
        align-items: center;
        
        height: 100vh;
    }
    .login-box {
        width: 350px;
        height: 300px;
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.3);
        padding: 20px;
        box-shadow: 0 4px 30px rgba(0,0,0,0.1);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .title {
        font-size: 24px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    .tabs {
        display: flex;
        width: 100%;
        margin-bottom: 15px;
    }
    .tab {
        flex: 1;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: 0.2s;
    }
        .tab.active {
            color: #fff;
            border-bottom: 2px solid #c90012;
            font-weight: bold;
        }
    .tab-content {
        display: none;
        width: 100%;
        text-align: center;
    }
    .tab-content.active {
        display: block;
    }
    input, select {
        width: 94%;
		text-align: center;
        padding: 8px;
        margin-top: 8px;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 6px;
        font-size: 14px;
        background: rgba(255,255,255,0.1);
        color: #fff;
        outline: none;
    }
    input::placeholder {
        color: rgba(255,255,255,0.6);
    }
    select {
        background: rgba(255,255,255,0.1);
        color: #000;
    }
    .otp-box {
    display: flex;
    justify-content: center;
    gap: 6px;
    direction: ltr; /* کل کانتینر LTR */
    }
    .otp-box input {
        width: 38px;
        height: 38px;
        text-align: center;
        font-size: 16px;
        border-radius: 6px;
        background: rgba(255,255,255,0.1);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.3);
		    direction: ltr; /* خود مربع هم LTR */
    }
	.mobile-container {
        margin-top: 10px;
		text-align : center;
    }
    /* استایل پلاک */
    .plate-container {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        gap: 5px;
    }
    .plate-container input, .plate-container select {
        flex: 1;
        text-align: center;
    }
.btn {
    margin-top: 12px;
    background-color: #c90012;
    color: #fff;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}
    .btn:hover {
        opacity: 0.9;
        color: #fff;
    }
    .info-text {
        font-size: 12px;
        margin-top: 8px;
        color: rgba(255,255,255,0.8);
    }

.btn-return-index{
    position : absolute;
    top: 50px;
}