@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url(https://res.cloudinary.com/dtklmxu91/image/upload/v1750730699/IMG_20241015_132311_602_jeuoeh.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}

.container {
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(60px);
  color: #fff;
  border-radius: 13px;
  padding: 30px 40px;
}

.container h1 {
  font-size: 38px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 26px;
  letter-spacing: 0.5px;
}

.social-login {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.google-btn,
.apple-btn {
  width: 100%;
  height: 45px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}

.google-btn:hover,
.apple-btn:hover {
  transform: scale(1.05);
}
.or {
  text-align: center;
  width: 100%;
}

i[class^="bx"] {
  font-size: 24px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.container .form-input {
  width: 100%;
  height: 50px;
  margin: 20px 0;
}

.form-input input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}

.form-input input::placeholder {
  color: #fff;
}

svg {
  position: absolute;
  right: 55px;
  margin-top: 3%;
  transform: translate(-50%);
}

.container .btn {
  width: 100%;
  height: 45px;
  background: #33ffbd;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.container .btn:hover {
  transform: scale(1.05);
}

.login-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.login-link p a:hover {
  text-decoration: underline;
}

.container .login-link {
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
}

@media only screen and (max-width: 520px) {
  .container {
    width: 90%;
    padding: 30px 10px;
  }
}
/* Toast container */
.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #28a745;
  color: white;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 20px; /* Changed from bottom to top */
  font-size: 17px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: visibility 0s, opacity 0.5s ease-out;
  opacity: 0;
}

/* Show the toast */
.toast.show {
  visibility: visible;
  opacity: 1;
}
