/* استایل صفحه ورود */

@font-face {
	font-family: iran;
	font-style: normal;
	font-weight: 300;
	src: url('../font/IRANSansWeb(FaNum)_Light.eot');
	src: url('../font/IRANSansWeb(FaNum)_Light.eot?#iefix') format('embedded-opentype'),  /* IE6-8 */
		 url('../font/IRANSansWeb(FaNum)_Light.woff2') format('woff2'),  /* FF39+,Chrome36+, Opera24+*/
		 url('../font/IRANSansWeb(FaNum)_Light.woff') format('woff'),  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
		 url('../font/IRANSansWeb(FaNum)_Light.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: iran !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0b141a 0%, #202c33 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e9edef;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: #202c33;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #e9edef;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #8696a0;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #2a3942;
    border: 1px solid #313d45;
    border-radius: 5px;
    color: #e9edef;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #00a884;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: #00a884;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #06cf9c;
}

.error-message {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 5px;
    color: #ff6b6b;
    font-size: 14px;
    display: none;
    text-align: center;
}
