/**
 * Login Form
 */
#loginform #password-reset {
  display: block;
  margin-top: 8px;
}

/**
 * Visibility styles
 */
.hidden {
  display: none;
}



/***************************/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  display: block;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/**
 * Profile > Change Password dropdown
 * The password change result message is rendered after the form in normal flow.
 * The panel has a fixed width and the message wraps within that width so it
 * doesn't make the form grow horizontally when the message is long.
 */
.menu-item.dropdown .dropdown-submenu > .dropdown-menu {
  width: 280px !important;
  max-width: 280px !important;
  min-width: 280px !important;
  box-sizing: border-box !important;
}

/* Bootstrap .row is display:flex with negative margins; disable both inside
   the password dropdown so the message respects the panel's width. */
.menu-item.dropdown .dropdown-submenu > .dropdown-menu > .row {
  display: block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#focustech-auth-pw-change-msg {
  margin: 8px 0 0 0;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.3;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}