@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap");
body {
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #000;
  font-size: 1.1em;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  background-color: rgba(231, 231, 231, 0.2);
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top_menu {
  width: 100%;
  text-align: right;
  position: absolute;
  top: 10px;
  z-index: 200;
  right: 10px;
}

.top_menu img {
  cursor: pointer;
  width: 40px;
}

#login_container {
  z-index: 100;
  width: 100%;
  max-width: 400px;
  display: none;
}

h2 {
  text-align: center;
  margin-bottom: 0px;
  font-weight: 100;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.form-container input {
  margin-bottom: 15px;
  padding: 10px;
  box-sizing: border-box;
  xborder: 1px solid #ccc;
  border-radius: 5px;
  border: 1px solid #bebebe;
  /*background-color: #c9c9c9;*/
  font-size: 16px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

button {
  font-family: "Dosis", sans-serif;
  padding: 10px;
  /*background-color: #444;*/
  border: 1px solid #444;
  /*color: white;*/
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  font-size: 1.1em;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 100;
  /*
  box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.15);
  */
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 2px 2px;
}

button:hover {
  background-color: #323940;
  color: #FFF;
  border: 1px solid #FFF;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

button:disabled {
  background-color: #323940;
  border: 1px solid #444;
  color: #8f8f8f;
  transition: 0.3s;
  text-decoration: line-through;
  cursor: wait;
}

.input_group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.password_toggle img {
  width: 25px;
  position: absolute;
  top: 7px;
  right: 10px;
  cursor: pointer;
}

.form-options {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.form-options a {
  color: #000;
  text-decoration: none;
  font-size: 1em;
}

.form-options a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

label {
  font-size: 1.1em;
}

.zbackground {
  z-index: 10;
  height: 100vh;
  width: 100vw;
  background-image: url("../img/film_strip_4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 8s ease-in;
  position: absolute;
}

#login_images_container {
  z-index: 10;
  height: 100%;
  width: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

#login_images_container img {
  max-height: 400px;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  rotate: 1deg;
}

#login_images_container {
  position: relative; /* Allows absolute positioning inside */
  xwidth: 350px; /* Set your preferred size */
  xheight: 250px;
}

#login_images_container img {
  position: absolute;
  xwidth: 100%; /* Optional: makes both images same size */
  border-radius: 10px; /* Optional: rounded corners */
}

/* First image (bottom layer) */
#login_images_container .img1 {
  top: 0;
  left: 0;
  z-index: 1;
}

/* Second image slightly shifted (top layer) */
#login_images_container .img2 {
  top: 20px; /* Move down a bit */
  left: 20px; /* Move right a bit */
  z-index: 2;
  opacity: 0.9; /* Optional: small transparency */
}

@media (max-width: 850px) {
  #login_container {
    padding: 0 20px;
  }
}

/*# sourceMappingURL=login.css.map */
