@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 0 10px;
}

body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: url("https://yourvoice.secured.services/toronto-skyline.jpg"), #ffffff;*/
  background-position: center;
  background-size: cover;
  background-color: #45BDEE;
}

.wrapper {
  width: 400px;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.card {
  padding: 20px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
  /*background-color: #fff; /* Set your card background color */
  border-radius: 10px; /* Add rounded corners */
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.input-field {
  position: relative;
  border-bottom: 2px solid #ccc;
  margin: 15px 0;
}

.input-field label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #45BDEE;
  font-size: 16px;
  pointer-events: none;
  transition: 0.15s ease;
}

.input-field input {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
}

.input-field input:focus~label,
.input-field input:valid~label {
  font-size: 0.8rem;
  top: 10px;
  transform: translateY(-120%);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

#remember {
  accent-color: #fff;
}

.wrapper a {
  color: #4d89f7;
  text-decoration: none;
}

.wrapper a:hover {
  text-decoration: underline;
}

button {
  background: #45BDEE;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  border: 2px solid transparent;
  transition: 0.3s ease;
  margin-bottom: 10px;
}

button:hover {
  color: rgba(0, 0, 0, 0.75);
  border-color: #45BDEE;
  background: rgba(69, 189, 238, 0.15);
}
button:disabled {
  background: rgba(69, 69, 69, 0.15);
}

button.forget {
  color: #45BDEE;
  background: #fff;
  padding: 0px 15px;
  width: fit-content;
  border-radius: 15px;
  font-size: 14px;
}

.register {
  text-align: center;
  margin-top: 30px;
  color: #fff;
}

.eye_pos {
  margin-left: -35px;
  cursor: pointer;
  font-size:25px;
}
.error-message {
  color: red;
  margin-bottom: 10px;
}
/* Customize the toastr notification */
#toast-container {
  position: fixed;
  bottom: 20px; /* Adjust the distance from the bottom */
  right: 20px; /* Adjust the distance from the left */
  z-index: 9999;
}

toast-container.div {
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Box shadow */
}

.toast {
  width: 300px; /* Adjust the width of the notification */
  background-color: #333; /* Background color */
  color: #fff; /* Text color */
  border-radius: 20px; /* Border radius */
}

.toast-title {
  font-weight: bold;
}

.toast-success {
  background-color: #4CAF50; /* Success notification background color */
}

.toast-error {
  background-color: #FF5733; /* Error notification background color */
}

.toast-info {
  background-color: #3498DB; /* Info notification background color */
}

.toast-warning {
  background-color: #F39C12; /* Warning notification background color */
}
