.forgot-key-container {
  width: 500px;
  height: 450px;
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px;
  font-family: 'Poppins', sans-serif; }

.forgot-new-key-container {
  width: 500px;
  height: 680px;
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px;
  font-family: 'Poppins', sans-serif; }

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 30px; }

.button-container button {
  width: 258px;
  height: 40px;
  border-color: #FF7500;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 600;
  background-color: #FF7500;
  color: white; }

.btn-forgot-otp {
  width: 281px; }

.otp-container {
  display: flex;
  justify-content: center;
  gap: 15px; }

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 18px;
  border: 2px solid #ccc;
  border-radius: 5px; }

.otp-input:focus {
  outline: none; }

.otp-input.filled {
  border-color: #FF7500; }

.otp-input.error {
  border-color: #FF7F7F; }

.reset-password-form {
  max-width: 400px;
  margin: 0 auto; }

.form-group {
  margin-bottom: 20px;
  position: relative; }

.form-group label {
  font-weight: 500; }

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center; }

.lock-icon {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 20px;
  pointer-events: none; }

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  width: 20px;
  height: 20px; }

.form-validator-stack {
  position: absolute;
  top: 90%;
  left: 0;
  margin-top: 5px;
  color: #d9534f;
  font-size: 14px; }

.success-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); }

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 20px;
  width: 500px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px; }

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px; }

.close-button:hover,
.close-button:focus {
  color: black; }

.header-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 10px; }

.header-box h2,
.modal-content h2 {
  font-size: 26px;
  color: #FF7500; }

.header-box h2 b,
.modal-content h2 b {
  color: #173748;
  font-weight: 700; }

.header-box p,
.modal-content p {
  color: #848484;
  font-size: 17px;
  line-height: 1.3; }

.header-box img,
.modal-content img {
  width: 100px;
  height: 100px; }

.forgot-key-container .field label {
  font-size: 14px; }

.forgot-key-container .field,
.forgot-new-key-container .field {
  font-size: 16px;
  background-color: white;
  flex: 1;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px; }

.forgot-key-container .field:focus,
.forgot-new-key-container .field:focus {
  outline: none; }

.toast-container .alert {
  display: block; }

.toast-content {
  display: flex;
  align-items: flex-start;
  background-color: #FFF;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  position: fixed;
  top: 100px;
  right: 40px;
  z-index: 1050;
  width: 500px;
  height: 100px; }

.toast-content button {
  align-items: flex-start; }

.toast-icons {
  display: flex;
  gap: 10px;
  margin-right: 10px;
  align-items: flex-start;
  padding: 5px; }

.lock-icon,
.error-icon {
  width: 20px;
  height: 20px; }

.toast-text {
  flex: 1; }

.toast-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px; }

.toast-message {
  margin: 0;
  font-size: 14px; }

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #721c24; }

.close:hover {
  color: #501013; }

.forgot-new-key-container .icon {
  margin-right: 8px; }

.forgot-new-key-container .icon.valid {
  color: green; }

.forgot-new-key-container .icon.invalid {
  color: red; }

.forgot-new-key-container ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0; }

.forgot-new-key-container li {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  font-size: 13px; }

@media (max-width: 680px) {
  .forgot-key-container,
  .forgot-new-key-container {
    width: 100%;
    height: auto;
    border-radius: 20px; }
  .otp-container {
    gap: 10px; }
  .modal-content {
    width: 100%;
    height: auto; } }