body {
    color: var(--ada-foreground);
    background: var(--ada-background)
}

.page-container {
    display: flex;
    justify-content: center;
    padding: 16px;
    height: 100vh;
    align-items: center;
}

.card {
    padding: 16px;
    border-radius: 32px;
    background: var(--ada-card);
    width: 450px;
}

.subtitle {
    margin-bottom: 30px;
    font-size: 14px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

.text-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
}

.text-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ada-input-label);
}

.text-field .input-wrapper {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--ada-border);
}

.text-field .input-container {
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background: var(--ada-input-background);
}

.text-field .input-container:hover {
    background: var(--ada-input-background--hover);
}

.text-field input {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    outline: none;
    border: none;
    color: var(--ada-input-foreground);
}

.text-field input::placeholder {
    color: var(--ada-input-placeholder);
}

.text-field .helper-text {
    font-size: 0.75rem;
    color: var(--ada-input-helper-text);
    margin: 0;
    display: none;
}

.text-field.error label,
.text-field.error .helper-text {
    color: var(--ada-error);
}

.text-field.error .input-wrapper {
    border-color: var(--ada-error);
}

.text-field.disabled label,
.text-field.disabled .helper-text {
    color: var(--ada-neutral-300);
}

.text-field.disabled .input-container {
    background: var(--ada-input-background--disabled);
}

.text-field.disabled .input-container:hover {
    background: var(--ada-input-background--disabled);
}

.text-field.disabled input {
    color: var(--ada-neutral-300);
}

.button {
    width: 100%;
    margin-top: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border: none;
    background-color: var(--ada-primary);
    color: var(--ada-neutral-50);
}

.button:hover {
    background-color: var(--ada-primary--hover);
}

.button:active {
    background-color: var(--ada-primary);
}

.button:disabled {
    cursor: default;
    background-color: var(--ada-neutral-300);
    color: var(--ada-neutral-100);
}

.button-secondary {
    width: 100%;
    margin-top: 16px;
    background-color: transparent;
    color: var(--ada-primary);
    border: 2px solid transparent;
}

.button-secondary:hover {
    background-color: transparent;
    color: var(--ada-primary--hover);
    border-color: var(--ada-primary--hover);
}

.button-secondary:active {
    background-color: transparent;
    color: var(--ada-primary);
    border-color: transparent;
}

.button-secondary:disabled {
    cursor: default;
    background-color: transparent;
    color: var(--ada-neutral-300);
    border-color: transparent;
}

.message {
    color: var(--ada-neutral-500);
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.message.success {
    background: var(--ada-success-background);
    color: #155724;
    border: 1px solid var(--ada-success);
}

.message.error {
    background: var(--ada-error-background);
    color: #721c24;
    border: 1px solid var(--ada-error);
}

.message.info {
    background: var(--ada-info-background);
    border: 1px solid var(--ada-info);
}

.message.show {
    display: block;
}

.otp-step-2 {
    display: none;
}

.otp-step-2.show {
    display: block;
}

.otp-step-1.hide {
    display: none;
}