@font-face {
  font-family: Merriweather;
  src: url(../assets/fonts/Merriweather/Merriweather-Regular.ttf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Merriweather;
}

/* body{
  min-height: 100vh;
} */

.wrapper {
  max-width: 1200px;
}

.login-section {
  background: url(../assets/images/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  overflow: hidden;

}

p {
  margin: 0;
  padding: 0;
}

.login-section {
  max-height: 100vh;
}

.main-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 70vh;
}

.banner {
  height: 400px;
  width: 375px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.login-form {
  height: 400px;
  width: 375px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.img-container img {
  height: 400px;
  width: 300px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.banner-card {
  border-radius: 15px;
  background-color: transparent;
  border-radius: 50px;
}

.nav-container {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.form-control {
  outline: none !important;
  box-shadow: none;
  padding: 8px;
}

.form-control:focus {
  outline: none !important;
  box-shadow: none;
  border-radius: none;
  border: 1px solid #296fab;
}

.form-select {
  padding: 8px;
}

.form-select:focus {
  outline: none !important;
  box-shadow: none;
  border: #296fab 1px solid;
}

.login-btn {
  background-color: black;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  padding-left: 120px;
  padding-right: 120px;
  padding-top: 12px;
  padding-bottom: 11px;
  background-image: linear-gradient(
    to right,
    #504f2c 0%,
    #ff0000 51%,
    #2c3e50 100%
  );
  transition: 0.5s;
  background-size: 200% auto;
  box-shadow: 0 0 20px #eee;
  display: block;
}

.login-btn:hover {
  background-color: #296fab;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  padding-top: 12px;
  padding-bottom: 11px;
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.login-title {
  background: #2b75b1;
  background: linear-gradient(to right, #2b75b1 34%, #f58225 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(360deg);
}

.flip-box-inner {
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box {
  background-color: transparent;
  perspective: 1000px;
}

.edu-text {
  color: #f58225;
}

.care-text {
  color: #2b75b1;
}

.footer {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  bottom: 0;
}

.flip-box {
  background-color: transparent;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(360deg);
}

.flip-box-front {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}