| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
|
|
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; |
| line-height: 1.6; |
| color: #1f2937; |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| min-height: 100vh; |
| padding: 2rem 1rem; |
| } |
|
|
| .header { |
| background: white; |
| padding: 1rem 2rem; |
| box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); |
| border-radius: 12px; |
| margin-bottom: 2rem; |
| max-width: 900px; |
| margin-left: auto; |
| margin-right: auto; |
| } |
|
|
| .clearfix::after { |
| content: ""; |
| display: table; |
| clear: both; |
| } |
|
|
| .logo-container img { |
| height: 50px; |
| display: block; |
| } |
|
|
| .okta-instructions { |
| max-width: 900px; |
| margin: 0 auto; |
| background: white; |
| padding: 3rem; |
| border-radius: 12px; |
| box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); |
| } |
|
|
| h1 { |
| font-size: 2rem; |
| font-weight: 700; |
| color: #111827; |
| margin-bottom: 1.5rem; |
| line-height: 1.3; |
| } |
|
|
| h2 { |
| font-size: 1.5rem; |
| font-weight: 600; |
| color: #1f2937; |
| margin-top: 2.5rem; |
| margin-bottom: 1rem; |
| padding-bottom: 0.5rem; |
| border-bottom: 2px solid #e5e7eb; |
| } |
|
|
| h3 { |
| font-size: 1.25rem; |
| font-weight: 600; |
| color: #374151; |
| margin-top: 2rem; |
| margin-bottom: 0.75rem; |
| } |
|
|
| p { |
| margin-bottom: 1rem; |
| color: #4b5563; |
| } |
|
|
| ul, ol { |
| margin-bottom: 1.5rem; |
| padding-left: 1.5rem; |
| } |
|
|
| li { |
| margin-bottom: 0.75rem; |
| color: #4b5563; |
| } |
|
|
| li p { |
| margin-bottom: 0.5rem; |
| } |
|
|
| ul ul, ol ul { |
| margin-top: 0.5rem; |
| margin-bottom: 0.5rem; |
| } |
|
|
| a { |
| color: #667eea; |
| text-decoration: none; |
| font-weight: 500; |
| transition: color 0.2s ease; |
| } |
|
|
| a:hover { |
| color: #764ba2; |
| text-decoration: underline; |
| } |
|
|
| kbd { |
| background: #f3f4f6; |
| border: 1px solid #d1d5db; |
| border-radius: 4px; |
| padding: 0.2rem 0.5rem; |
| font-family: 'Monaco', 'Courier New', monospace; |
| font-size: 0.9em; |
| color: #374151; |
| white-space: nowrap; |
| } |
|
|
| hr { |
| border: none; |
| border-top: 1px solid #e5e7eb; |
| margin: 2rem 0; |
| } |
|
|
| .okta-callout { |
| padding: 1.25rem; |
| border-radius: 8px; |
| margin: 1.5rem 0; |
| display: flex; |
| gap: 1rem; |
| } |
|
|
| .okta-warning { |
| background: #fef3c7; |
| border-left: 4px solid #f59e0b; |
| } |
|
|
| .okta-callout .icon-warning::before { |
| content: "⚠️"; |
| font-size: 1.5rem; |
| display: block; |
| } |
|
|
| .okta-callout p { |
| margin-bottom: 0.75rem; |
| } |
|
|
| .okta-callout strong { |
| color: #92400e; |
| font-weight: 600; |
| } |
|
|
| .okta-callout ul { |
| margin-bottom: 0; |
| margin-top: 0.5rem; |
| } |
|
|
| .okta-callout li { |
| color: #78350f; |
| } |
|
|
| strong { |
| font-weight: 600; |
| color: #111827; |
| } |
|
|
| ol { |
| counter-reset: item; |
| list-style: none; |
| padding-left: 0; |
| } |
|
|
| ol > li { |
| counter-increment: item; |
| position: relative; |
| padding-left: 2.5rem; |
| margin-bottom: 1.5rem; |
| } |
|
|
| ol > li::before { |
| content: counter(item); |
| position: absolute; |
| left: 0; |
| top: 0; |
| width: 1.75rem; |
| height: 1.75rem; |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| color: white; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-weight: 600; |
| font-size: 0.9rem; |
| } |
|
|
| ul li::marker { |
| color: #667eea; |
| } |
|
|
| @media (max-width: 768px) { |
| body { |
| padding: 1rem 0.5rem; |
| } |
| |
| .header { |
| padding: 1rem; |
| border-radius: 8px; |
| } |
| |
| .okta-instructions { |
| padding: 1.5rem; |
| border-radius: 8px; |
| } |
| |
| h1 { |
| font-size: 1.5rem; |
| } |
| |
| h2 { |
| font-size: 1.25rem; |
| } |
| |
| ol > li { |
| padding-left: 2rem; |
| } |
| |
| ol > li::before { |
| width: 1.5rem; |
| height: 1.5rem; |
| font-size: 0.8rem; |
| } |
| } |