html {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: larger;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #000000;
}

a:hover {
    color: #979797;
}

body {
   background-image: url("background.png");
   background-repeat: no-repeat;
   background-attachment: fixed;
   background-blend-mode: overlay;
   background-position: bottom right;
   background-size: cover;
   margin: 0;
   padding: 0;
}

body::before {
   background-color: rgba(246, 239, 214, 1);
}

#content {
    margin:auto;
    text-align: center;
    padding: 32px;
    line-height: 1.6em;
    margin-left:15%;
    margin-right:15%;
}

#footer{
 position:fixed;
 bottom:0;
 right:0;
}

.login-form-box{
  position: absolute;
  top: -150%;
  left: 50%;
  display: none;
  transform: translate(-50%,-50%) scale(1.25);
  width: 500px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  color: #fff;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  transition: top 0ms ease-in-out 200ms,
              display 200ms ease-in-out 0ms,
              transform 20ms ease-in-out 0ms;
}

.login-form-box.active{
  position: absolute;
  left: 50%;
  width: 500px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  color: #fff;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  top: 50%;
  display: block;
  transform: translate(-50%,-50%) scale(1);
  transition: top 0ms ease-in-out 0ms,
              display 200ms ease-in-out 0ms,
              transform 20ms ease-in-out 0ms;
}

.login-input-box{
  margin: 31px auto;
  width: 80%;
  border-bottom: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 5px;
}

.login-input-box input{
  width: 90%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.login-input-box input::placeholder{
  color: #ccc;
}

.eye{
  position: absolute;
}

#hide1{
  display: none;
  color: red;
}

.login-btn{
  background: #fff;
  color: black;
  width: 80%;
  margin: 40px auto 20px;
  padding: 10px 0;
  font-size: 16px;
  border: 2px solid #154734;
  border-radius: 12px;
  display: block;
  outline: none;
  cursor: pointer;
  transition-duration: 0.3s;
}

.login-btn:hover {
  background: #154734;
  color: white;
}

.admin {
  display: none;
}

.admin.active {
  display: block;
}

table {
  border-collapse: collapse;
  background: rgba(1, 1, 1, 0.7);
  color: white;
}

table, th, td {
  border: 1px solid black;
  padding: 8px;
}

th {
  padding: 0 10px;
}

.form-box{
  margin: auto;
  width: 500px;
  background: rgba(0, 0, 0, 0.8);
  margin: auto;
  padding: 20px 0;
  color: #fff;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  transition: display 200ms ease-in-out 0ms;
}

.form-box h1{
  text-align: center;
  margin-bottom: 10px;
}

.input-box{
  margin: 0px auto;
  width: 80%;
  border-bottom: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 5px;
}

.input-box input{
  width: 90%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.input-box input::placeholder{
  color: #ccc;
}

.required-asterisk {
  color: red;
}

.container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  align-items: center;
  height: 50px; /* Adjust the height based on your layout */
}

.google-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 0 5px;
  border: black;
  background-color: white;
  cursor: pointer;
}

.google-signin-button:hover {
  background-color: #154734;
}

.google-icon {
  width: 24px;
  height: 24px;
  background-image: url('https://www.gstatic.com/firebasejs/ui/2.0.0/images/auth/google.svg');
  background-size: cover;
}

.github-signin-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px; /* Adjust the height based on your layout */
}

.github-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 0 5px;
  border: black;
  background-color: white;
  cursor: pointer;
}

.github-signin-button:hover {
  background-color: #154734;
}

.github-icon {
  width: 24px;
  height: 24px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/25/25231.png');
  background-size: cover;
}

.separator {
  margin: 0px 40px 20px;
  border: none;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 600px) {

  #content {
      padding: 32px 0;
      margin-left:5%;
      margin-right:5%;
  }

  .login-form-box.active{
    width: 90%;
  }

  table {
    font-size: 10px;
    width: 100%;
  }

  table, th, td {
    padding: 4px;
  }

  .form-box{
    width: 100%;
  }

}
