.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light-purple) 0%, #f5f0ff 100%);
}

.auth-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(122, 95, 168, 0.15);
    max-width: 400px;
    width: 100%;
    border-top: 4px solid var(--primary-purple);
}

.auth-form h1 {
    color: var(--dark-purple);
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

.auth-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(167, 139, 220, 0.1);
}

.auth-form button {
    margin-top: 10px;
}

.auth-form p {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.auth-form a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: bold;
}

.auth-form a:hover {
    text-decoration: underline;
}
