@font-face {
  font-family: "Cubic";
  src: url("/static/assets/fonts/web/Cubic_11_1.013_R.woff2") format("woff2"),
    url("/static/assets/fonts/web/Cubic_11_1.013_R.woff") format("woff");
}

body {
  background-color: black;
  color: aliceblue;
  font-family: "Cubic", "Courier New", Courier, monospace;

  font-size: 1.25em;
  margin: 0;
}

#main-login-container input {
  font-family: "Cubic", "Courier New", Courier, monospace;
  font-size: 20px;
}
#login-master {
  background-image: url("/static/assets/backgrounds/loginpagebackgroundsmalldarken.webp");
  background-image:
  /* Top feathered edge */ linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1),
      rgba(0, 0, 0, 0) 10%
    ),
    /* Right feathered edge
     linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 10%), */
      /* Bottom feathered edge */
      linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 10%),
    /* Left feathered edge */
      /* linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 10%), */
      /* Background image */ url("/static/assets/footer-background.png");

  background-size: cover;
  background-repeat: no-repeat;

  background-position: top; /* This centers the background image */
}

#other-side-container {
  padding-bottom: 2%;
  display: flex;
  justify-content: center;
}
#header-2 {
  padding-top: 3vh;
  padding-left: 4vw;
  padding-bottom: 1vh;
  display: flex;
}

#header-top-padding {
  padding-top: 5vh;
}

#main-login-container {
  justify-content: center;
  align-items: center;
  display: flex;
  padding-bottom: 50%;
}

label {
  padding-bottom: 2%;
}
#div-login-form {
  background-color: #000000;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  max-height: 200px;
  padding-right: 5%;
  padding-left: 6%;
  padding-bottom: 5%;
  overflow: hidden;
}

#login-button {
  font-family: "Cubic", "Courier New", Courier, monospace;
  font-size: 16px;
  margin-bottom: 0%;
  margin-top: 5%;
}
.seperator {
  margin-left: 1vw;
  margin-right: 3vw;
  margin-bottom: 3vw;
  margin-top: 3vw;
  color: rgb(67, 67, 67);
}
#infomation-container-other-method {
  margin-bottom: 10%;
}

#google-login-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Cubic", "Courier New", Courier, monospace;
  letter-spacing: 1px;
  background-color: #8922d3;
  width: 96%;
  font-size: 16px;
  margin-bottom: 5%;
}

#register-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Cubic", "Courier New", Courier, monospace;
  letter-spacing: 1px;
  background-color: #8922d3;
  width: 96%;
  margin-top: 0%;
  font-size: 16px;
  margin-bottom: 15%;
}
#google-logo {
  line-height: 2em;
  max-height: 16px;
  padding-top: 5px;
  padding-right: 10px;
}
#login-header {
  font-size: 2.8em;
  font-weight: 400;
  opacity: 0;

  animation: fadeIn 1s forwards;
  padding-top: 5%;
  padding-bottom: 10%;
}

#expand-item {
  max-height: 40px;
}

#expand-item:hover {
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: inline-block;
  width: 100px;
}

input[type="text"],
input[type="password"] {
  width: 90%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  background-color: #4caf50;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 3%;

  width: 96%;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.error-message {
  color: red;
  font-size: 12px;
}
.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s linear;
}

.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.65s linear;
}

#register-button,
#google-login-button,
#other-side-container {
  transition: opacity 1s linear;
}

#login-form {
  transition: opacity 1.2s linear;
}

#div-login-form {
  transition: max-height 1s ease;
}
