* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; } body { background-color: #f5f8fa; display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 20px; /*background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);*/ } .login-container { background: white; width: 100%; max-width: 380px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); overflow: hidden; } .login-header { background: #0066cc; color: white; padding: 25px; text-align: center; position: relative; } .login-header h1 { font-size: 24px; font-weight: 500; margin-bottom: 5px; } .login-body { padding: 30px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #333; font-size: 14px; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; transition: border-color 0.3s; } .form-control:focus { border-color: #0066cc; outline: none; box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1); } .submit-btn { width: 100%; padding: 13px; background-color: #0066cc; color: white; border: none; border-radius: 6px; font-size: 16px; font-weight: 500; cursor: pointer; transition: background-color 0.3s; margin-top: 5px; } .submit-btn:hover { background-color: #0055aa; } .login-footer { margin-top: 20px; text-align: center; color: #666; font-size: 14px; } .login-footer a { color: #0066cc; text-decoration: none; font-weight: 500; margin-left: 5px; } .login-footer a:hover { text-decoration: underline; } .error-message { background-color: #ffebee; color: #d32f2f; padding: 12px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; } .success-message { background-color: #e8f5e9; color: #2e7d32; padding: 12px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; } .message-icon { margin-right: 10px; font-size: 18px; } .campus-icon { position: absolute; top: 15px; right: 15px; font-size: 24px; opacity: 0.8; }