* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Vazirmatn, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    width: 380px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    color: white;
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.auth-container form {
    display: flex;
    flex-direction: column;
}

.auth-container label {
    margin-top: 15px;
    font-size: 14px;
}

.auth-container input {
    margin-top: 5px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

.auth-container input:focus {
    box-shadow: 0 0 0 2px #fff;
}

.auth-container button {
    margin-top: 25px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: white;
    color: #764ba2;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.auth-container button:hover {
    background: #f1f1f1;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.auth-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

.remember {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
}

.remember input {
    margin-left: 8px;
}