/* Custom styles */
.password-reset-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
}

.password-suggestion {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.password-suggestion input {
  flex-grow: 1;
}

.logo {
  display: block;
  margin: 0 auto 20px;
  /* Center the logo and add space below */
  max-width: 100%;
  /* Ensure the logo is responsive */
  height: auto;
}

.language-selector {
  text-align: right;
  /* Aligns the content to the right */
  align-items: center;
  /* Aligns the content vertically */
}

.flag-icon {
  /* Example padding, adjust as needed */
  padding: 5px;
  /* Keeping your flag icon size controlled */
  width: 40px;
  height: 40px;
  margin-left: 5px;
}

.img-flag {
  height: 12px;
  width: 18px;
  margin-right: 10px;
}

#displayname {
  font-weight: bold;
}

#resetPwForm {
  width: 100%;
}

.hidden {
  display: none;
}

.full-modal {
  opacity: 1 !important;
  background-color: #ffffff;
}


/* radio button styling */
.radiobutton-container {
  display: flex;
  flex-direction: column;
  
}

.radiobutton-container input[type="radio"] {
  display: none;
  
}

.radiobutton-container label {
  background-color: #f0f0f0;
  color: black;
  padding: 10px;
  margin: 5px;
  text-align: center;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  
}

.radiobutton-container input[type="radio"]:checked + label {
  background-color: rgb(13 110 253);
  color: white;
  
}

.upnItem {
  font-size: 16px; /* larger font size */
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%
}

.samaccountnameItem {
  font-size: 12px; /* smaller font size */
  opacity: 0.7;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%
}
