@font-face {
    font-family: "YekanBakh";
    src: url("./Yekan-Bakh/Yekan-Bakh-FaNum-04-Regular.ttf") format("truetype"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-04-Regular.woff") format("woff"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-04-Regular.eot");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    src: url("./Yekan-Bakh/Yekan-Bakh-FaNum-05-Medium.ttf") format("truetype"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-05-Medium.woff") format("woff"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-05-Medium.eot");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    src: url("./Yekan-Bakh/Yekan-Bakh-FaNum-06-Bold.ttf") format("truetype"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-06-Bold.woff") format("woff"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-06-Bold.eot");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    src: url("./Yekan-Bakh/Yekan-Bakh-FaNum-07-Heavy.ttf") format("truetype"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-07-Heavy.woff") format("woff"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-07-Heavy.eot");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "YekanBakh";
    src: url("./Yekan-Bakh/Yekan-Bakh-FaNum-08-Fat.ttf") format("truetype"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-08-Fat.woff") format("woff"),
         url("./Yekan-Bakh/Yekan-Bakh-FaNum-08-Fat.eot");
    font-weight: 900;
    font-style: normal;
}
:root {
    --main-font: 'YekanBakh', sans-serif;
    --primary-color: #ff6b6b;
    --secondary-color: #ff8e8e;
    --gradient-start: #ff6b6b;
    --gradient-end: #ff8e8e;
    --text-primary: #333;
    --text-secondary: #666;
    --border-radius: 15px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'YekanBakh', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        #f6f8ff 0%,
        #f1f4ff 20%,
        #e8ecff 40%,
        #edf0ff 60%,
        #e5e9ff 80%,
        #e0e4ff 100%
    );
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255,107,107,0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(255,142,142,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(33,150,243,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header i {
    font-size: 48px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.login-header h1 {
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.input-icon input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-icon input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

button:hover i {
    transform: translateX(-5px);
}

.footer-credit {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 480px) {
    .login-wrapper {
        padding: 15px;
    }
    
    .login-container {
        padding: 20px;
    }
    
    .login-header i {
        font-size: 40px;
    }
    
    .login-header h1 {
        font-size: 20px;
    }
}