implemented step 08 by Gemini

addes 2. step of wizard
This commit is contained in:
2026-06-14 04:47:56 +02:00
parent 0e0670574d
commit aeeaddd3bc
4 changed files with 224 additions and 14 deletions

View File

@ -216,7 +216,7 @@ label {
font-size: 0.875rem;
}
textarea, input[type="text"] {
textarea, input[type="text"], input[type="email"] {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border-color);
@ -225,12 +225,58 @@ textarea, input[type="text"] {
font-size: 0.875rem;
}
textarea:focus, input[type="text"]:focus {
textarea:focus, input[type="text"]:focus, input[type="email"]:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-section {
margin-bottom: 2.5rem;
}
.form-section h3 {
font-size: 1.125rem;
margin-bottom: 1.25rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border-color);
}
.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.form-hint {
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 0.5rem;
}
.checkbox-group {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 1rem;
background-color: #f8fafc;
border-radius: 0.375rem;
border: 1px solid var(--border-color);
}
.checkbox-group input[type="checkbox"] {
margin-top: 0.25rem;
width: 1rem;
height: 1rem;
cursor: pointer;
}
.checkbox-group label {
margin-bottom: 0;
cursor: pointer;
font-weight: 400;
}
button:disabled {
opacity: 0.5;
cursor: not-allowed;