.modern-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-logo {
    margin-bottom: 30px;
}

.login-logo img {
    max-width: 180px;
    height: auto;
}

h2 {
    font-family: 'IRANSans', Arial, sans-serif;
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.login-subtitle {
    font-family: 'IRANSans', Arial, sans-serif;
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 30px;
}

.login-button-container {
    margin-top: 30px;
}

.modern-login-button {
    font-family: 'IRANSans', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
	background: linear-gradient(135deg, #dba834 0%, #eba125 100%);
	color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.modern-login-button:hover {
	background: linear-gradient(135deg, #dfc07a 0%, #eba125 100%);
	transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

.button-icon {
    margin-right: 10px;
    font-size: 20px;
}

.button-text {
    font-family: 'IRANSans', Arial, sans-serif;
}

.login-container {
	background-color: #e7ebee!important;
}

/* برای موبایل */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }

    h2 {
        font-size: 20px;
    }

    .login-subtitle {
        font-size: 14px;
    }

    .modern-login-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* حذف استایل‌های اضافی مودل */
#page {
    background: transparent !important;
}

#page-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.navbar {
    display: none !important;
}