|
|
| <style> |
| button { |
| background-color: #191970; |
| color: white; |
| padding: 8px 10px; |
| border: 2px; |
| border-radius: 75px; |
| cursor: pointer; |
| margin: 5px; |
| font-size: 0.9em; |
| box-shadow: 0 4px 4px rgba(0, 0, 0, 0.9), 0 4px 4px rgba(0, 0, 0, 0.9); |
| transform: translateY(0); |
| transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out; |
| } |
| button:hover { |
| background-color: #3A4DFB; |
| box-shadow: 0 7px 14px rgba(0, 255, 0.1, 0.9), 3px 3px 6px rgba(0, 255, 0.1, 0.3); |
| transform: translateY(-3px); |
| } |
| button:active { |
| transform: translateY(2px); |
| box-shadow: 0 3px 4px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.3); |
| } |
| input[type="text"], input[type="password"], input[type="email"], input[type="number"], textarea, select { |
| background-color: rgba(0, 0, 100, 0.5); |
| color: white; |
| border: 1px solid #4169E5; |
| border-radius: 25px; |
| padding: 10px; |
| box-shadow: 0 0 15px #00FF00; |
| } |
| input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus, textarea:focus, select:focus { |
| outline: none; |
| border-radius: 25px; |
| box-shadow: 0 0 15px #00FF00; |
| } |
| </style> |