/* Make sure the footer stays at the bottom of the viewport */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full screen height */
}

/* Whatever wraps your main content */
main {
  flex: 1; /* pushes the footer down */
}

/* Footer stays at bottom */
footer {
  margin-top: auto; /* ensures footer is at the bottom */
  background-color: #000; /* optional, to match your design */
}


/*Navbar Section*/
/*Background*/
.navbar {
  background-color: black;
  padding: 1rem 1rem;
  
}

/*Text*/
.navbar-brand {
  font-family: "baskerville", serif;
  font-size: 30px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
}

/*Nav Links*/
.nav-link {
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 1px;
}

.nav-link {
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 1px;
}



/*Signup Section*/
.signup-boxes {
    display: flex;
    flex-direction: column;
    margin: 20px;
    gap: 20px;
}

.signup-heading {
    padding-top: 30px;
    padding-left: 20px;
    font-family: "baskerville", serif;
    font-size: 36px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
}

.signup-text {
  font-family: "baskerville", serif;
  font-size: 26px;
  font-weight: light;
  color: rgb(0, 0, 0);
  letter-spacing: 2px; 
}

.signup-button {
    background-color: black;
    color: antiquewhite;
    font-family: "baskerville", serif;
    font-size: 20px;
    font-weight: light;
    letter-spacing: 1px;
    max-width: 250px;
}

.switch {
    padding-left: 20px;
    font-family: "baskerville", serif;
    font-size: 20px;
    font-weight: light;
    color: rgb(0, 0, 0);
    letter-spacing: 1px;
}



/*Login Section*/
.login-boxes {
    display: flex;
    flex-direction: column;
    margin: 20px;
    gap: 20px;

}

.login-heading {
    padding-top: 30px;
    padding-left: 20px;
    font-family: "baskerville", serif;
    font-size: 36px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
}

.login-text {
  font-family: "baskerville", serif;
  font-size: 26px;
  font-weight: light;
  color: rgb(0, 0, 0);
  letter-spacing: 2px; 
}

.login-button {
    background-color: black;
    color: antiquewhite;
    font-family: "baskerville", serif;
    font-size: 20px;
    font-weight: light;
    letter-spacing: 1px;
    max-width: 250px;
}

.switch {
    padding-left: 20px;
    font-family: "baskerville", serif;
    font-size: 20px;
    font-weight: light;
    color: rgb(0, 0, 0);
    letter-spacing: 1px;
}

.password-button {
  font-family: "baskerville", serif;
  font-size: 20px;
  font-weight: light;
  color: rgb(0, 0, 0);
  letter-spacing: 1px;  
}





/*Footer*/
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: auto;
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  padding: 1rem 1rem;
}

.footer-logo {
  padding-left: 40px;
  text-decoration: none;
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
}

.footer-item {
  padding-right: 10px;
  list-style: none;
}

.footer-link {
  text-decoration: none;
  font-family: "baskerville", serif;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
  
}

.footer-foot {
  display: flex;
}