/* Main content */
    .main-content {
      padding: 14px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 180px;
    }
    
    .login-container {
      width: 100%;
      max-width: 1680px;
      margin: 0 auto;
      padding: 0 119px;
    }
    
    .login-form-wrapper {
      width: 46%;
      margin: 0 auto;
      background-color: rgba(216, 72, 24, 0.05);
      border-radius: 16px;
      padding: 30px 24px;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }
    
    .login-title {
      font-family: 'Exo', sans-serif;
      font-size: 24px;
      font-weight: 600;
      color: #121535;
      line-height: 32px;
      margin-bottom: 32px;
    }
    
    .form-group {
      margin-bottom: 18px;
    }
    
    .form-label {
      display: block;
      font-size: 18px;
      color: #121535;
      line-height: 22px;
      margin-bottom: 10px;
    }
    
    .required {
      color: #e94b48;
    }
    
    .form-input {
      width: 100%;
      padding: 14px 22px;
      border: 1px solid #e6e6e6;
      border-radius: 4px;
      font-size: 18px;
      color: #121535;
      line-height: 22px;
    }
    
    .form-input::placeholder {
      color: #7f7f7f;
    }
    
    .password-input-wrapper {
      position: relative;
    }
    
    .password-input {
      padding-right: 42px;
    }
    
    .password-toggle {
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
    }
    
    .form-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 44px;
    }
    
    .login-button {
      background-color: #d84818;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      padding: 13px 40px;
      font-size: 18px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    
    .login-button:hover {
      background-color: #c23e14;
    }
    
    .remember-me {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 50px;
    }
    
    .remember-me input {
      width: 16px;
      height: 16px;
    }
    
    .remember-me label {
      font-size: 14px;
      color: #4d4d4d;
      line-height: 17px;
    }
    
    .forgot-password {
      color: #d84818;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      line-height: 17px;
    }

    /* Form validation styles */
    .form-input.is-invalid,
    .form-control.is-invalid {
      border-color: #e94b48 !important;
    }

    .invalid-feedback {
      color: #e94b48;
      font-size: 14px;
      margin-top: 5px;
    }

