Changed around line 1
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
+ color: #fff;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ min-height: 100vh;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ header h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ header p {
+ font-size: 1.1rem;
+ opacity: 0.9;
+ }
+
+ main {
+ background: rgba(255, 255, 255, 0.1);
+ padding: 2rem;
+ border-radius: 10px;
+ width: 100%;
+ max-width: 400px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 600;
+ }
+
+ input {
+ width: 100%;
+ padding: 0.75rem;
+ border: none;
+ border-radius: 5px;
+ background: rgba(255, 255, 255, 0.9);
+ color: #333;
+ font-size: 1rem;
+ }
+
+ input:focus {
+ outline: none;
+ box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.5);
+ }
+
+ button {
+ width: 100%;
+ padding: 0.75rem;
+ background: #667eea;
+ border: none;
+ border-radius: 5px;
+ color: #fff;
+ font-size: 1rem;
+ font-weight: 600;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ button:hover {
+ background: #5568c2;
+ }
+
+ footer {
+ margin-top: 2rem;
+ text-align: center;
+ }
+
+ footer a {
+ color: #667eea;
+ text-decoration: none;
+ font-weight: 600;
+ }
+
+ footer a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 480px) {
+ main {
+ padding: 1.5rem;
+ }
+
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+ }