
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background: linear-gradient(135deg,rgb(10, 255, 251), #b21f1f,rgb(74, 112, 123));
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-size: 400% 400%;
      animation: gradient 15s ease infinite;
    }
    
    @keyframes gradient {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    
    .container {
      display: flex;
      width: 1000px;
      height: 750px;
      box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }
    
    .image-section {
      flex: 1;
      
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 100px;
      bottom: 200px;
      color: white;
      transition: all 0.5s ease;
    }
    
    .image-section:hover {
      transform: scale(1.02);
    }
    
    .image-overlay {
      position: absolute;
      top: 100;
      left: 0;
      right: 0;
      bottom: ;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
      z-index: 1;
    }
    
    .image-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    
    .logo {
      width: 120px;
      height: 120px;
      margin: 0 auto 30px;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .logo img {
      width: 80px;
      height: 80px;
      object-fit: contain;
    }
    
    .image-content h2 {
      font-size: 32px;
      margin-bottom: 15px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    
    .image-content p {
      font-size: 16px;
      line-height: 1.6;
      opacity: 0.9;
      max-width: 90%;
      margin: 0 auto;
    }
    
    .login-section {
      flex: 1;
      background-color: rgba(255, 255, 255, 0.95);
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      backdrop-filter: blur(5px);
    }
    
    .login-header {
      margin-bottom: 40px;
      text-align: center;
    }
    
    .login-header h1 {
      font-size: 32px;
      color: #222;
      margin-bottom: 10px;
      font-weight: 700;
      background: linear-gradient(to right, #1a2a6c, #b21f1f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .login-header p {
      color: #666;
      font-size: 15px;
      letter-spacing: 0.3px;
    }
    
    .form-group {
      margin-bottom: 25px;
      position: relative;
    }
    
    .form-group label {
      display: block;
      font-size: 14px;
      color: #555;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .form-group input {
      width: 100%;
      padding: 14px 15px 14px 45px;
      border: 1px solid #e0e0e0;
      background-color: #f9f9f9;
      border-radius: 10px;
      font-size: 14px;
      transition: all 0.3s ease;
    }
    
    .form-group input:focus {
      outline: none;
      border-color: #1a2a6c;
      box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
      background-color: white;
    }
    
    .form-group i {
      position: absolute;
      left: 15px;
      top: 40px;
      color: #888;
      font-size: 18px;
    }
    
    .form-extras {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      font-size: 14px;
    }
    
    .remember-me {
      display: flex;
      align-items: center;
    }
    
    .remember-me input {
      margin-right: 8px;
      accent-color: #1a2a6c;
      cursor: pointer;
    }
    
    .remember-me label {
      cursor: pointer;
      color: #555;
    }
    
    .forgot-password {
      color: #1a2a6c;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .forgot-password:hover {
      text-decoration: underline;
      color: #b21f1f;
    }
    
    .login-button {
      background: linear-gradient(to right, #1a2a6c, #2a5298);
      color: white;
      border: none;
      padding: 15px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(26, 42, 108, 0.3);
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    
    .login-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 7px 20px rgba(26, 42, 108, 0.4);
      background: linear-gradient(to right, #2a5298, #1a2a6c);
    }
    
    .social-login {
      text-align: center;
      margin-top: 20px;
    }
    
    .social-login p {
      color: #777;
      margin-bottom: 20px;
      position: relative;
      font-size: 14px;
    }
    
    .social-login p::before,
    .social-login p::after {
      content: "";
      display: inline-block;
      width: 25%;
      height: 1px;
      background-color: #ddd;
      vertical-align: middle;
      margin: 0 10px;
    }
    
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background-color: white;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
      font-size: 18px;
    }
    
    .social-icons a:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .social-icons a:nth-child(1) {
      color: #DB4437;
    }
    
    .social-icons a:nth-child(2) {
      color: #4267B2;
    }
    
    .social-icons a:nth-child(3) {
      color: #000000;
    }
    
    .signup-link {
      text-align: center;
      margin-top: 30px;
      font-size: 15px;
      color: #555;
    }
    
    .signup-link a {
      color: #1a2a6c;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .signup-link a:hover {
      text-decoration: underline;
      color: #b21f1f;
    }
    
    .floating-decoration {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: linear-gradient(45deg, rgba(253, 187, 45, 0.1), transparent);
      z-index: -1;
    }
    
    .decoration-1 {
      top: -50px;
      right: -50px;
    }
    
    .decoration-2 {
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
    }
    
    .captcha-container {
      margin-bottom: 25px;
    }
    
    .captcha-container canvas {
      width: 100%;
      height: 56px;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      background-color: #f9f9f9;
    }
    
    .captcha-input {
      margin-top: 10px;
      position: relative;
    }
    
    .captcha-input i {
      position: absolute;
      left: 15px;
      top: 14px;
      color: #888;
      font-size: 18px;
    }
    
    .captcha-input input {
      padding-left: 45px !important;
    }
    
    .error-message {
      color: #e74c3c;
      font-size: 13px;
      margin-top: 5px;
    }
    
    @media (max-width: 950px) {
      .container {
        width: 90%;
        flex-direction: column;
        height: auto;
        margin: 30px 0;
      }
      
      .image-section {
        display: none;
      }
      
      .login-section {
        padding: 40px 30px;
      }
      
      .floating-decoration {
        display: none;
      }
    }
    
    @media (max-width: 480px) {
      .login-section {
        padding: 30px 20px;
      }
      
      .login-header h1 {
        font-size: 28px;
      }
      
      .form-group input {
        padding: 12px 15px 12px 40px;
      }
      
      .form-group i {
        font-size: 16px;
        top: 36px;
      }
    }
    .welcome-back {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .user-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: #f0f0f0;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      color: #666;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .welcome-message {
      margin-top: 20px;
      font-size: 16px;
      color: #666;
    }
    
    .action-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 30px;
    }
    
    .continue-button {
      background: linear-gradient(to right, #4776E6, #8E54E9);
      color: white;
      border: none;
      border-radius: 6px;
      padding: 12px 20px;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(71, 118, 230, 0.2);
    }
    
    .continue-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(71, 118, 230, 0.3);
    }
    
    .different-account {
      background: transparent;
      border: 1px solid #ddd;
      color: #666;
      border-radius: 6px;
      padding: 12px 20px;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .different-account:hover {
      background: #f9f9f9;
    }
    
    .button-icon {
      margin-right: 8px;
    }
    
    .last-login {
      font-size: 12px;
      color: #999;
      margin-top: 15px;
      text-align: center;
    }
