form {
    max-width: 400px;
    background: var(--beckersuite-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
form h2 {
    text-align: center;
    color: var(--beckersuite-primary-mild);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--color-muted);
    margin-bottom: 1rem;
}
form button[type="submit"] {
    width: 100%;
}
form otheroption {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}
form otheroption a {
    color: var(--beckersuite-primary-mild);
    font-weight: bold;
}