/* Add some basic styling */
body {
  padding: 0;
  margin: 0;
}

div#googleSignInButton {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

h1 {
  text-align: center;
}

form {
  margin: 0 auto;
}

label {
  display: block;
  margin-bottom: 8px;
}

/* Style for selectable buttons */
.selectable-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.selectable-buttons button {
  border: 2px solid #fff;
  padding: 8px;
  cursor: pointer;
  transition: border-width 0.3s ease;
  background: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* Add border when button is selected */
.selectable-buttons button.selected {
  border: 2px solid #064c91;
}

.container.login {
  /* background: url(images/bglogin.svg); */
  background-position: center bottom;
  background-repeat: no-repeat;
  text-align: center;
  padding: 2rem;
}

.container.login img {
  width: 125px;
}

.container.login h1 {
  font-size: 1.125rem;
  margin: 1rem;
}

.selectable-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}

button.role-button img {
  width: 35px !important;
}

.container.login input {
  display: block;
  width: calc(100% - 1.5rem);
  padding: 0.75rem;
  border: 1px solid #4995bf;
  border-radius: 5px;
}

div#selected-role {
  color: #064c91;
  margin: 1rem;
}

button.submit {
  margin: 1rem;
  width: 250px;
  padding: 0.75rem;
  background: #064c91;
  border: 0;
  border-radius: 500px;
  color: #fff;
}
button.registerMe {
  background: #fff0;
  padding: 0.75rem 2rem;
  border: 1px solid;
  border-radius: 500px;
  display: block;
  margin: auto;
  margin-top: 1rem;
}

.loginFlex {
  display: flex;
  gap: 1rem;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  height: calc(100vh - 4rem);
}

.slideCont {
  width: calc(90% - 2rem);
  background: #fff;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 10px;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: white;
  display: none;
}

.infoSection {
  width: 50%;
  height: 100%;
}

.loginSection {
  width: 50%;
  background: #ffffff00;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper {
  height: 100%;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 15px 10px #00000000;
}

.swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.15);
}
button.forgotPw {
  display: block;
  margin: auto;
  border: 0;
  background: none;
  color: #000;
  margin-bottom: -1rem;
}
@media (max-width: 991.98px) {
  .slideCont {
    margin-bottom: 0;
    width: 100%;
    background: linear-gradient(
      0deg,
      rgb(255 255 255) 24% 24%,
      rgba(255, 255, 255, 0) 100% 100%
    );
    height: 50%;
    color: #000;
    display: flex;
    justify-content: flex-end;
    font-size: 0.7rem;
    display: none;
  }

  .container.login {
    padding: 0 1.5rem;
  }

  .swiper {
    height: 270px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .loginFlex {
    flex-direction: column;
  }

  .infoSection,
  .loginSection {
    width: 100%;
  }

  .loginSection {
    padding-bottom: 5rem;
    transform: translateY(-3rem);
    z-index: 1;
  }

  .container.login img {
    width: 125px;
    background: #f4f5fe;
    padding: 0.5rem 1rem;
    border-radius: 10px;
  }
}
