/* فایل styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Vazirmatn', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.login-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 80%;
       position: relative;
    top: -100px; 
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #d66b7d;
}

form {
    display: flex;
    flex-direction: column;
}

input {
     font-family: 'Vazirmatn', sans-serif;
    padding: 10px;
    font-size: 20px;
    margin-bottom: 15px;
    text-align:center;
    border: 1px solid #d66b7d;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #ff6f91;
    box-shadow: 0 0 5px rgba(255, 111, 145, 0.5);
}

button {
     font-family: 'Vazirmatn', sans-serif;
    padding: 10px;
    font-size: 20px;
    background: #d66b7d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ff6f91;
}
