* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 50px;
  background-color: black;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.05);
  z-index: 10;
  border-bottom: 5px solid #468902;
}

.logo {
  font-size: 50px;
  font-weight: bold;
  color: whitesmoke;
  font-family: Amatic SC;
}
body {
  background-image: url("../images-compress/Untitled design.png");
}

.login-btn {
  display: block;
  margin: 0 auto;
  color: black;
}

form button .login-btn {
  background-color: #898ece;
  border: 1px solid;
  border-radius: 6px;
  width: 30%;
  bottom: 30%;
  display: block ruby;
}

/* This is the start for login and register form css */
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 495px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  margin-top: 226px;
  margin-left: 740px;
  border: 2px solid black;
  border-radius: 4px;
  overflow: hidden;
}

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

/* This rotates the card */
.flipped-card {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #fc9fa3;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #fc9fa3;
  color: white;
  transform: rotateY(180deg);
}
label {
  font-size: 21px;
}

form.register {
  height: 90%;
  padding: 20px;
  display: grid;
}

/* End of login and register form css*/
