

input[type="text"] {
  border-radius: 10px;
  margin: 10px 0;
  padding: 10px;
  width: 40%;
  color: white;
  background-color: #71b49c;
}

input[type="text"]:hover,
input[type="text"]:focus {
  color: var(--std-font-color);
  background-color: gold;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.width15 {
  width: 15%;
}


.submit {
  background-color: #800020;
  margin-top: 20px;
  margin-left: 50px;
  padding: 5px 25px 5px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  font-family: "Courier New", Courier, monospace;
  color: white;
  text-align: center;
  cursor: pointer;
}

.submit:hover {
  background-color: indigo;
}

#email-input {
  font-family: var(--std-font-family);
    font-weight: 600;
    font-size: 1.25em;
    line-height: 1.0;
    margin: 0;
    padding-left: 15px;
    color: var(--std-font-color);
}

.community-text {
  font-family: var(--std-font-family);
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.0;
    margin: 0;
    padding-left: 15px;
    color: var(--std-font-color);
}

#signup-error-panel {
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: rgb(243, 211, 211);
}

#signup-error-msg {
  font-family: var(--std-font-family);
    font-weight: 800;
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.0;
    text-align: center;
    color: rgb(110, 2, 2);
}

#signup-response-panel {
  width: 100%;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: rgb(252, 211, 136);
}


#signup-response-msg {
  font-family: var(--std-font-family);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.0;
  color: var(--std-font-color);
}

#signup-container {
  position: relative;
  height: 65px;
  width: 100%;
  margin-left: 20px;
  margin-top: 20px; 
}

#signup-input-panel {
  margin-left: 85px;
  margin-top: 1px;
}

.signup-panel {
  position: absolute;
  width: 100%;
  height: 65px;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
}

.signup-panel.show {
  opacity: 1;
  pointer-events: auto;
}
/* /////////////////////////////////////////////// */
.signup-window {
  position: absolute;
    width: 100%;
    height: 65px;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 2s ease;
}

.signup-window.show {
  opacity: 1;
  pointer-events: auto;
}