.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f7f8;
  height: 100%;
}
main{
  display:flex;
  align-items: center;

}
h1 {
  font-size: 61px;
}
.header-login {
  width: 90%;
  display: flex;
  justify-content: flex-end;
  padding: 30px;
  background-color: #f6f7f8;
}

.join-header-logo {
  position: absolute;
  left: 60px;
  top: 40px;
}
.footer-login-signup {
  display: none;
}
.header-login-signup {
  height: 130px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: baseline;
}

.login-window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 652px;
  height: 449px;
  border-radius: 30px;
  padding: 48px 115px 48px 115px;
  box-shadow: 0 0 14px 3px rgba(0, 0, 0, 0.04);
  background: white;
  gap: 20px;
  margin-top: 0px;
}

.signup-1 {
  font-size: 20px;
}

.signup-2 {
  font-size: 16px;
  height: 49px;
  width: 91px;
  background-color: rgba(42, 54, 71, 1);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-2:hover {
  background-color: rgba(41, 171, 226, 1);
  cursor: pointer;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s, box-shadow 0.25s;
}
.login-btns {
  display: flex;
}
.login-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-inputs input {
  width: 422px;
  height: 48px;
  border-radius: 10px;
  padding: 12px 21px 12px 21px;
  font-size: 18px;
  border: 1px solid rgba(209, 209, 209, 1);
}

.login-separator {
  width: 157px;
  height: 3px;
  background-color: rgba(41, 171, 226, 1);
}

.login-inputs input:focus {
  border-color: #29abe2 !important; /* Change the border color to blue */
  outline: none;
  box-shadow: 0 0 0 1px #29abe2; /* Add a blue outline */
}

input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: "Inter", sans-serif;
  opacity: 1; /* Firefox */
  font-size: 18px;
  color: #d1d1d1;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #d1d1d1;
}

input:hover {
  cursor: pointer;
}

input:-ms-input-placeholder {
  /* Microsoft Edge */
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #d1d1d1;
}

.login-input-imgs {
  position: absolute;
  height: 24px;
  width: 24px;
}

.login-inputs {
  position: relative;
}

.mail-img {
  top: 14px;
  right: 15px;
}
.pw-img {
  top: 100px;
  right: 15px;
}

.login-btns {
  display: flex;
  gap: 30px;
  font-weight: 700;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(42, 54, 71, 1);
  color: white;
  border-radius: 8px;
  width: 110px;
  height: 48px;
}

.login-btn:hover {
  background-color: rgba(41, 171, 226, 1);
  cursor: pointer;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s, box-shadow 0.25s;
}
.guest-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(42, 54, 71, 1);
  border: 2px solid rgba(42, 54, 71, 1);
  border-radius: 8px;
  width: 177px;
  height: 48px;
}

.guest-login-btn:hover {
  color: rgba(41, 171, 226, 1);
  border: 2px solid rgba(41, 171, 226, 1);
  cursor: pointer;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: border 0.25s, color 0.25s;
}

.footer-login {
  height: 130px;
  display: flex;
}
.footer-content {
  font-size: 16px;
  padding: 20px;
  display: flex;
  color: rgba(168, 168, 168, 1);
}
main {
  flex: 1;
}

.footer-btn {
  width: 121px;
  height: 35px;
  color: #cdcdcd;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-btn:hover {
  cursor: pointer;
  color: #29abe2;
  font-weight: 700;
}
.footer-btns {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.error-msg {
  font-size: 16px;
  color: red;
}

.login-input-email,
.login-input-pw {
  height: 65px;
}

.greeting {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.greeting-logo {
  width: 150px;
  position: absolute;
  transition: transform 1s ease-in-out, width 1s ease-in-out;
}



.greeting.hide {
  opacity: 0;
  pointer-events: none;
}
