body {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.reset-container {
    background: var(--qa-color-a848765152f3);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px var(--qa-color-7371e081cd85);
    padding: 3rem;
    width: 100%;
    max-width: 480px;
}

.reset-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reset-header .icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.btn-reset {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
    border: none;
    color: white;
    padding: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--qa-color-9e476f470fef);
    color: white;
}
