/* Style cho form thay đổi mật khẩu Liferay - tương đồng với theme */
  .login_wrap_app_panel .v-menu__content {
    top: 55px !important;
    left: 160px !important;
  }
  #portlet_new-password {
      min-height: calc(100vh - 190px);
      border-top: 1px solid #dadada;
      padding: 30px
  }
  #portlet_new-password  .sheet-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  #portlet_new-password .portlet-header, #portlet_new-password .sheet-header .pull-right{
      display: none !important;
  }
  #portlet_new-password .sheet-text {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0.2, 0.2, 0.2, 0.2);
  }

  #portlet_new-password .sheet-text .form {
  width: 100%;
  }

  #portlet_new-password .sheet-text .fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px 0;
  }

  #portlet_new-password .sheet-text .form-group {
  margin-bottom: 20px;
  }

  #portlet_new-password .sheet-text .form-group:last-child {
  margin-bottom: 0;
  }

  #portlet_new-password .sheet-text .control-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
  }

  #portlet_new-password .sheet-text .form-control {
  width: 100%;
  height: 32px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  }

  #portlet_new-password .sheet-text .form-control:focus {
  outline: none;
  border-color: var(--primary-color, #0072bc);
  box-shadow: 0 0 0 2px rgba(0, 114, 188, 0.1);
  }

  #portlet_new-password .sheet-text .form-control:hover:not(:focus) {
  border-color: #999;
  }

  #portlet_new-password .sheet-text .form-control::placeholder {
  color: rgba(0, 0, 0, 0.38);
  }

  /* Button style */
  #portlet_new-password .sheet-text .button-holder {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  }

  #portlet_new-password .sheet-text .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  #portlet_new-password .sheet-text .btn-primary {
  background-color: var(--primary-color, #0072bc);
  color: #fff;
  }


  #portlet_new-password .sheet-text .btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 114, 188, 0.3);
  }
  .alert-danger {
    color: #E00000 !important;
    border: none !important;
    padding-left: 0 !important;
    font-size: 14px !important;
  }
  #portlet_new-password .sheet-text .btn-default {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
  }
  #portlet_new-password .sheet-text .lfr-btn-label {
  display: inline-block;
  }

  /* Input wrapper */
  #portlet_new-password .sheet-text .input-text-wrapper {
  position: relative;
  }

  /* Responsive */
  @media (max-width: 768px) {
      #portlet_new-password .sheet-text {
          padding: 16px;
          margin: 0 12px;
      }
      
      #portlet_new-password .sheet-text .button-holder {
          flex-direction: column;
      }
      
      #portlet_new-password .sheet-text .btn {
          width: 100%;
      }
  }

  /* Error state (nếu có validation) */
  #portlet_new-password .sheet-text .form-group.has-error .form-control {
  border-color: #E00000;
  }

  #portlet_new-password .sheet-text .form-group.has-error .control-label {
  color: #E00000;
  }

  #portlet_new-password .sheet-text .form-group.has-error .form-control:focus {
  border-color: #E00000;
  box-shadow: 0 0 0 2px rgba(224, 0, 0, 0.1);
  }
  
  /* Hidden fields */
  #portlet_new-password .sheet-text .form-control[type="hidden"] {
  display: none;
  }