| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| background: linear-gradient(135deg, #ff9a9e, #fad0c4); | |
| color: #333; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| } | |
| .container { | |
| background: #fff; | |
| border-radius: 10px; | |
| box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); | |
| width: 90%; | |
| max-width: 500px; | |
| padding: 20px; | |
| text-align: center; | |
| } | |
| h1, h2 { | |
| color: #444; | |
| } | |
| .step { | |
| display: none; | |
| } | |
| .step.active { | |
| display: block; | |
| } | |
| button { | |
| background-color: #ff6f61; | |
| border: none; | |
| color: white; | |
| padding: 10px 20px; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| font-size: 16px; | |
| margin: 10px; | |
| transition: background-color 0.3s; | |
| } | |
| button:hover { | |
| background-color: #ff4a4a; | |
| } | |
| button:focus { | |
| outline: none; | |
| } | |