/* assets/style.css */
.mobile-login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-login-container .form-group {
	margin-bottom: 10px;
}

.mobile-login-container .form-group input {
	border-radius: 6px;
}

.mobile-login-container .form-step button {
	border-radius: 4px;
	background-color: #1c39bb;
 	color: #fff;
}

.login-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.mobile-login-container .site-logo-login {
	display: flex;
	flex-flow: row;
	justify-content: center;
	margin: 25px auto;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.tab-btn.active {
    border-bottom-color: #0073aa;
    color: #0073aa;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.login-form {
    direction: rtl;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.login-form h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    direction: ltr;
    text-align: right;
}

.login-form input:focus {
    outline: none;
    border-color: #0073aa;
}

.btn-primary, .btn-secondary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #0073aa;
    color: #fff;
    margin-bottom: 10px;
}

.btn-primary:hover {
    background: #005a87;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.timer {
    text-align: center;
    margin: 15px 0;
    color: #666;
    font-size: 14px;
}

.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
