@charset "UTF-8";
html {
  position: relative;
  min-height: 100%;
}

body {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-weight: 400;
  flex-direction: column;
  position: relative;
  font-family: Hack, monospace;
}
body div {
  margin: 20px;
}

.btn-1 {
  font-family: Hack, monospace;
  background: #0F0F6D;
  color: #ffffff;
  cursor: pointer;
  font-size: 2em;
  padding: 1.5rem;
  border: 0;
  transition: all 0.5s;
  border-radius: 10px;
  width: auto;
  position: relative;
}
.btn-1::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  left: 85%;
  top: 31%;
  right: 5%;
  bottom: 0;
  opacity: 0;
}
.btn-1:hover {
  background: #2b2bff;
  transition: all 0.5s;
  border-radius: 10px;
  box-shadow: 0px 6px 15px #0000ff61;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
}
.btn-1:hover::after {
  opacity: 1;
  transition: all 0.5s;
}

.login-btn {
  font-family: Hack, monospace;
  background: #5fcf80;
  color: #1d1d1d;
  cursor: pointer;
  font-size: 2em;
  padding: 1.5rem;
  border: 0;
  transition: all 0.5s;
  border-radius: 10px;
  width: auto;
  position: relative;
  min-width: 250px;
}
.login-btn::after {
  
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  left: 80%;
  top: 54%;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.login-btn:hover {
  background: #39754b;
  transition: all 0.5s;
  border-radius: 10px;
  box-shadow: 0px 6px 15px #0000ff61;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  color: #ffffff;
}
.login-btn:hover::after {
  opacity: 1;
  transition: all 0.5s;
  color: #ffffff;
}

.logout-btn {
  font-family: Hack, monospace;
  background: #f4f765;
  color: #2c2c2c;
  cursor: pointer;
  font-size: 2em;
  padding: 1.5rem;
  border: 0;
  transition: all 0.5s;
  border-radius: 10px;
  width: auto;
  position: relative;
  min-width: 250px;
}
.logout-btn::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  left: 80%;
  top: 54%;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.logout-btn:hover {
  background: #bcbe30;
  transition: all 0.5s;
  border-radius: 10px;
  box-shadow: 0px 6px 15px #0000ff61;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  color: #ffffff;
}
.logout-btn:hover::after {
  opacity: 1;
  transition: all 0.5s;
  color: #ffffff;
}

.footer {
  position: absolute;
  font-size: 12px;
  bottom: 0;
  width: 100%;
  height: 60px;
  /* Set the fixed height of the footer here */
  background-color: #f5f5f5;
  text-align: center;
}
.footer a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid;
}
.footer a:hover {
  border-bottom: 1px transparent;
}