 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     line-height: 1.6;
     color: #333;
     background: linear-gradient(135deg, #fef3c7 0%, #f9fafb 100%);
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .login-container {
     background: white;
     padding: 40px;
     border-radius: 16px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     width: 100%;
     max-width: 400px;
 }

 .logo-section {
     text-align: center;
     margin-bottom: 30px;
 }

 .logo {
     display: inline-flex;
     align-items: center;
     margin-bottom: 10px;
 }

 .logo img {
     height: 48px;
     width: 48px;
     margin-right: 10px;
 }

 .logo h1 {
     font-size: 1.8rem;
     font-weight: bold;
     color: #92400e;
 }

 .login-title {
     font-size: 1.5rem;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 8px;
 }

 .login-subtitle {
     color: #6b7280;
     margin-bottom: 30px;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 6px;
     font-weight: 500;
     color: #374151;
 }

 .form-group input {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid #e5e7eb;
     border-radius: 8px;
     font-size: 16px;
     transition: all 0.3s ease;
     background: #fafafa;
 }

 .form-group input:focus {
     outline: none;
     border-color: #d97706;
     background: white;
     box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
 }

 .form-options {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
 }

 .remember-me {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .remember-me input[type="checkbox"] {
     width: auto;
     accent-color: #d97706;
 }

 .remember-me label {
     font-size: 14px;
     color: #6b7280;
     margin: 0;
 }

 .forgot-password {
     color: #d97706;
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
 }

 .forgot-password:hover {
     text-decoration: underline;
 }

 .login-btn {
     width: 100%;
     background: #d97706;
     color: white;
     border: none;
     padding: 14px 20px;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-bottom: 20px;
 }

 .login-btn:hover {
     background: #b45309;
     transform: translateY(-1px);
 }

 .signup-link {
     text-align: center;
     color: #6b7280;
 }

 .signup-link a {
     color: #d97706;
     text-decoration: none;
     font-weight: 500;
 }

 .signup-link a:hover {
     text-decoration: underline;
 }

 @media (max-width: 480px) {
     .login-container {
         padding: 30px 20px;
     }

     .social-login {
         flex-direction: column;
     }

     .logo h1 {
         font-size: 1.5rem;
     }

     .form-options {
         flex-direction: column;
         gap: 15px;
         align-items: flex-start;
     }
 }