* {
  box-sizing: border-box;
}

html,
body,
.wrapper {
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  margin: 0;
  background-color: #ffffff;
  background-image: url("../img/bg.jpg");
  backdrop-filter: blur(4px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  color: #868b94;
}

button {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.control {
  border: 0;
  border-radius: 8px;
  outline: none;
  height: 56px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.316);
  border-radius: 6px;
  color: #000000;
  margin: 8px 0;
  font-family: inherit;
  text-align: left;
  font-size: 16px;
  transition: 0.4s;
  width: 100%;
}

.reset-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px 15px;
  border-radius: 1rem;
  background-color: #f5f5f5;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  text-align: center;
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}

.reset-card > h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #333333;
}

.reset-card img {
  width: 150px;
  border-radius: 55%;
  padding: 5px;
  margin-bottom: 20px;
}

.reset-card > h3 {
  font-family: "Inter", sans-serif;
  color: #837f90;
  margin: 0 0 40px;
  font-weight: 300;
  font-size: 1rem;
}

.reset-form {
  width: 100%;
  margin: 0;
  display: grid;
  font-family: "Inter", sans-serif;
}

.reset-form input.control::placeholder {
  color: #868b94;
}

.reset-form input.control {
  box-shadow: rgba(194, 194, 194, 0.3) 0px 0px 0px 3px;
}

.reset-form input.control:focus {
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.reset-form > button.control {
  cursor: pointer;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #6699cc;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  color: #ffffff;
  border: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  transition: all 0.375s;
}

.reset-form > button.control:hover {
  background-color: #6699ccd8;
}

.reset-form > button.control:active {
  color: #000000;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

@media screen and (max-width: 768px) {
  .reset-card {
    width: 100%; /* Adjust width for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .control {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}

.container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inline {
  margin: 5px;
  display: inline-block;
}

.inline a {
  color: #868b94;
  text-decoration: none;
}

.inline a:active {
  color: #000000;
}

.priv a:active {
  color: #ffbd03;
}

.username {
  position: relative;
}

.swal2-font{
  font-family: "Montserrat", sans-serif;
}

.swal2-pfont{
  font-family: "Inter", sans-serif;;
}