@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --background-color: #090717;
  --background-input: #161326;
  --input-color: #6c757d;
  --primary-color: #0d6efd;
  --card-hover: #1b1731;
  --text-color: #fff;
  --text-color-muted: #6c757d;
}


* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--background-color);
}
/* Colors */
a {
  color: var(--primary-color) !important;
}
.primary-color {
  color: var(--primary-color) !important;
}
.text-color,
label {
  color: var(--text-color);
}
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.bg-color {
  background-color: var(--background-color) !important;
}
.border-primary {
  border-color: var(--primary-color) !important;
}
/* Colors End */

.pass-logo {
  position: absolute;
  height: 35px;
  width: 38px;
  background: transparent;
  line-height: 60px;
  font-size: 20px;
  text-align: center;
  padding-left: 15px;
  z-index: 999;
}

.content .pass-logo i.bx,
.showPass {
  color: var(--input-color);
  position: relative;
}

.content input {
  height: 100%;
  width: 100%;
  border: 1px solid var(--background-input);
  color: var(--text-color);
  border-radius: 10px;
  padding: 15px 10px 15px 45px;
  outline: none;
  background: var(--background-input);
}

.content input::placeholder {
  color: var(--input-color);
}

input.form-control:focus,
input.form-control:-webkit-autofill {
  box-shadow: none;
  border-color: var(--primary-color) !important;
  background: var(--background-input) !important;
  color: var(--text-color) !important;
}

.btn {
  border-radius: 10px !important;
  padding: 10px 5px;
}

.btn-login-with-google {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-login-with-google:hover {
  background-color: var(--background-input) !important;
  border-color: var(--primary-color) !important;
  transition: var(--tran-05);
}


/* Toast */
.toast {
  animation: fadeInOut 1s ease-in-out;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  50% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#toast-error {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2000 !important;
}
#toast-error .toast {
  background-color: var(--card-hover) !important;
}
@media (max-width: 768px) {
  #toast-error {
    position: fixed;
    width: max-content;
    height: 0px;
    top: 50px;
    right: 0px;
  }
  #toast-error .toast {
    width: 250px;
  }
}
/* Toast End */