/* header area with brand */ .brand-header background: #0a2b3e; padding: 1.8rem 2rem 1.5rem; text-align: center;
.forgot-link:hover color: #e06e00; text-decoration: underline; jobjack sign in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> <title>JobJack – Sign In to Your Account</title> <!-- Google Fonts & simple reset --> <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700&display=swap" rel="stylesheet"> <!-- Font Awesome 6 (free icons) --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <style> * margin: 0; padding: 0; box-sizing: border-box; body font-family: 'Inter', sans-serif; background: linear-gradient(145deg, #f6f9fc 0%, #eef2f5 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1.5rem; /* header area with brand */
.social-btn.google:hover background: #feeceb; border-color: #ffa7a0; padding: 1.8rem 2rem 1.5rem
<!-- Password --> <div class="input-group"> <div class="password-row"> <label for="password">Password</label> <a href="#" class="forgot-link" id="forgotPwLink">Forgot password?</a> </div> <div class="input-icon"> <i class="fas fa-lock"></i> <input type="password" id="password" name="password" placeholder="••••••••" autocomplete="current-password" required> </div> </div>
<!-- Sign In Button --> <button type="submit" class="signin-btn"> Sign in <i class="fas fa-arrow-right"></i> </button> </form>