/* 
#ez-login-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

#sms-login-form, #verify-otp-form {
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    display: inline-block;
    background-color: #4285f4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
button:hover {
    background-color: #3367d6;
}


#resend-timer {
    background-color: #ff9800;
    color: #fff;
}


.google-login-button {
    display: inline-block;
    background-color: orange;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 5px;
	width:100%;
}

.google-login-button:hover {
    background-color: green;
	color:white;
}

#phone-number {
	border: 2px solid green;
}

#send-otp {
	background-color: #4285f4;
	margin-top:10px;
	color:white;
	width:100%;
}

#send-otp:hover {
	background-color: red;
}

#otp-code {
	border: 2px solid blue;
}
#verify-otp {
	background-color: #4285f4;
	margin-top:10px;
	color:white;
	width:100%;
}
#verify-otp:hover {
	background-color: red;
} */


/* --- استایل فرم لاگین اختصاصی فرمولا --- */

#ez-login-form {
    max-width: 400px;
    margin: 30px auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    direction: rtl;
}

#sms-login-section h3 {
    text-align: center;
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 800;
}

/* استایل فیلد ورودی (شماره تماس و کد تایید) */
#ez-login-form input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    font-size: 17px;
    color: #1e293b;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

#ez-login-form input[type="text"]:focus {
    border-color: #19A29A; /* رنگ سبز فرمولا */
    background: #fff;
    box-shadow: 0 0 0 4px rgba(25, 162, 154, 0.1);
}

/* استایل دکمه‌های ارسال و ورود */
#ez-login-form button {
    width: 100%;
    padding: 15px;
    background: #19A29A;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#ez-login-form button:hover {
    background: #14857e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(25, 162, 154, 0.2);
}

#ez-login-form button:active {
    transform: translateY(0);
}

/* بخش تایمر */
#timer-display {
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 10px;
}

#remaining-time {
    color: #19A29A;
    font-weight: bold;
    font-size: 15px;
}

/* پیغام خطا */
#otp-error {
    background: #fef2f2;
    color: #dc2626 !important;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #fee2e2;
    font-size: 13px;
    margin-bottom: 15px;
    text-align: center;
    animation: fapShake 0.5s ease-in-out;
}

/* انیمیشن لرزش برای خطا */
@keyframes fapShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* واکنش‌گرا برای موبایل */
@media (max-width: 480px) {
    #ez-login-form {
        padding: 25px;
        margin: 15px;
        border-radius: 16px;
    }
}


#resend-otp-link:hover {
    text-decoration: underline;
    color: #14857e;
}
#change-phone-link:hover {
    color: #475569;
    text-decoration: underline;
}