@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: Montserrat;
  margin: 0;
  padding: 0;
}
body {
  background-image: url("bg.png");
  color: #fff;
}

.login-page {
  text-align: center;
  background-color: transparent;
  border-radius: 10px;
  padding: 2rem;
  width: 35%;
  margin-left: 10rem;
}
.back-log {
  text-decoration: none;
  color: #fff;
  background: orange;
  border-radius: 30px;
  padding: 15px;
  position: relative;
  z-index: 10;
  margin: 1rem;
}
.register-page {
  margin-left: 10rem;
}
.login-page h1 {
  color: #fff;
  margin: 0.5em;
}
.login-page form input {
  margin: 1em 0;
  padding: 0.5em;
}

form {
  max-width: 400px;
  padding: 20px;
  background-color: transparent;
  border-radius: 8px;
}

form h2 {
  text-align: center;
  margin: 1rem;
  color: #fff;
}

/* Adding styling for form labels */
label {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
  display: block;
}

/* Styling input fields */
input[type="email"],
input[type="password"],
input {
  width: 100%;
  height: 3rem;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #393939;
  border-radius: 10px;
  background-color: transparent;
  outline: none;
  font-size: 14px;
  color: #fff;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: #fff;
  opacity: 1;
}

.form-group {
  text-align: start;
}

.bg-dashboard {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(img/bg-d.jpg);
  background-position: center;
  background-size: cover;
  filter: blur(10px);
  z-index: -1;
}
.dashboard {
  text-align: center;
}
.dashboard h1 {
  color: #ffb200;
}
.dashboard button {
  background-color: #e38e49;
  outline: none;
  border: none;
  border-radius: 0.5em;
  padding: 0.5em;
  margin: 0.5em;
}
.dashboard button a {
  text-decoration: none;
  color: #1c325b;
}
.dashboard button:hover {
  background-color: #640d5f;
  transition: 0.5s ease-in-out;
  color: #fff;
}
.dashboard button:hover a {
  color: #fff;
  transition: 0.5s ease-in-out;
}
/* From Uiverse.io by itay1313 */
.body {
  --transition: all 0.55s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --yellow-bg: transparent linear-gradient(114deg, #fdc100 0%, #dd7d00 100%) 0%
    0% no-repeat padding-box;
  color: white;
  display: flex;
  justify-content: center;
}

.Btn {
  border-radius: 23px;
  letter-spacing: 0.8px;
  font-size: 14px;
  font-weight: 300;
  color: white;
  white-space: nowrap;
  margin: 20px auto;
  width: 166px;
  height: 45px;
  cursor: pointer;
  position: relative;
  border: 1px solid #dd7d00;
  background: #000104;
}

.Btn::before {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  content: "";
  width: 50%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  right: 0;
}

.Btn:hover::before {
  width: 100%;
}

.Btn.btn-hover {
  border-radius: 50px;
  position: relative;
}

.Btn.btn-hover .btn-text {
  color: white;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  mix-blend-mode: lighten;
}

.Btn.btn-hover::before {
  border-radius: 50px;
  width: 100%;
  background: conic-gradient(
        transparent 240deg,
        #ff512f 240deg,
        #f09819 300deg,
        transparent 300deg
      )
      100% / 64% no-repeat,
    var(--yellow-bg);
}

.Btn.btn-hover:hover .btn-text {
  margin-right: 30px;
}

.Btn.btn-hover:hover::before {
  background-position: right;
  border-radius: 23px;
  width: 25%;
}

/* From Uiverse.io by vinodjangid07 */
.bBtn {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-image: linear-gradient(
    to right,
    #ff512f 0%,
    #f09819 51%,
    #ff512f 100%
  );
}

/* plus sign */
.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: white;
}
/* text */
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}
/* hover effect on button width */
.bBtn:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.bBtn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 20px;
}
/* hover effect button's text */
.bBtn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}
/* button click effect*/
.bBtn:active {
  transform: translate(2px, 2px);
}
