/* Login, register and pass recover forms values, be careful */
/* My account values, be careful */
/* Bootstrap overrides, may be set to false */
.flip-box {
  background-color: transparent;
  width: 200px;
  height: 400px;
  border: 0px solid transparent;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-box-front {
  background-color: #E7374A;
  color: black;
}

/* Style the back side */
.flip-box-back {
  background-color: #124C6F;
  color: white;
  padding: 10px;
  transform: rotateY(180deg);
}
