
.form-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 2.5rem;
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: fadeUp 0.25s ease both;
}

.form-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.styled-form p {
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.styled-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 0.01em;
}

.styled-form input[type="text"],
.styled-form input[type="email"],
.styled-form input[type="password"],
.styled-form input[type="number"],
.styled-form select,
.styled-form textarea {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.625rem 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: var(--surface);
}

.styled-form textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.styled-form select { cursor: pointer; appearance: none; }

.btn-submit {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.7rem 1.2rem;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-on-accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-md);
}


