/*generic styling for sign in forms*/
header, footer {
    display: none;
}

.nada-logo {
    display: block;
    margin: 0 auto 20px;
    width: auto;
    height: 90px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
}

.login-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 400px;
    margin: 100px auto;
}

h2, #register-prompt {
    text-align: center;
    margin: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.link {
    text-align: center;
}

.link a {
    color: #007bff;
}

/*registration form*/
.form-field {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

input {
    margin: 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
}

/* Generic styling for "Forgot your password?" link */
.text-password {
    text-align: center;
    margin-top: 10px;
}

/* font size, color, and hover effect for the anchor tag specifically */
.text-password a {
    font-size: 1.1rem !important; 
    color: #007bff;
    text-decoration: none;
}

.text-password a:hover {
    text-decoration: underline;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto; /* 10% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more/less depending on screen */
  max-width: 600px;
  border-radius: 8px;
}

.close-button {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.btn.btn-secondary {
  margin-top: 15px;
  padding: 8px 16px;

}
