body {
  background-color: #DBC7A6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-family: Quantico;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#title {
    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #3D4957;

    font-weight: bold;
    font-size: large;
}

#login_box {
    background-color: #ECECEC;
    padding: 15px;
    gap: 10px;
    border: 5px solid black;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 15px;
    gap: 20px;

    color: #282E3A;
}

#buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    padding-top: 20px;
    gap: 15px;
}

button, a {
  border: 2px solid rgba(0, 0, 0, 0.5);
  font-size: medium;
  font-weight: bold;
  color: #282E3A;
  background-color: #F5F8FA;
  border-radius: 5px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 17px;
  padding-right: 17px;

  width: 150px;
  box-sizing: border-box;

  font-family: Quantico;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

input {
    font-family: Quantico;
    font-style: italic;

    background-color: rgba(255, 254, 254, 0.857);
}

button:hover, a:hover {
    background-color: #3d49578b;
}

/********** FOOTER **********/

footer {
  border-top: 2px solid #282E3A;
  background-color: rgb(241, 239, 239);
  padding: 10px 20px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
}


/***Overriding Bootstrap CSS***/

/* Override Bootstrap's .bg-white for your login box */
.bg-white {
  background-color: white !important;
}


/* Override Bootstrap's .form-control for input fields */
.form-control {
  font-family: Quantico, sans-serif;
  font-style: italic;
  background-color: rgba(255, 254, 254, 0.857) !important;
  color: #282E3A !important;
}

/* Override Bootstrap's .bg-light for body background */
.bg-light {
  background-color: #DBC7A6 !important;
}

#login_box {
    margin-bottom: 15px; /* or adjust as needed */
}



/** Back to Login Button **/
/* Add this to your login.css or signup.css */

.back-to-login-btn {
  display: inline-block;
  width: 100%;
  max-width: 160px;
  padding: 0.5rem 1rem;
  margin: 0px;
  /* margin-bottom: 80px !important; */
  background-color: #F5F8FA;
  color: #282E3A;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  font-family: Quantico, sans-serif;
  text-align: center;
  text-decoration: none;
}


.back-to-login-btn:hover, .back-to-login-btn:focus {
  background-color: #3d49578b;
  color: #fff;
  text-decoration: none;
}