/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/style.less to edit this template
*/
/*
    Created on : Sep 28, 2025, 4:10:27 PM
    Author     : Gregory Kelley
*/
#logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  max-width: 250px;
  height: auto;
}
h1 {
  text-align: center;
}
input {
  width: 100%;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 25px;
}
textarea {
  width: 100%;
  border-radius: 5px;
  padding: 5px;
  resize: none;
  height: 250px;
  margin-bottom: 15px;
}
button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 25px 5px 25px;
  font-size: 16px;
  color: white;
  background: #00A63D;
  border: none;
  margin-bottom: 15px;
  width: 100%;
  cursor: pointer;
}
.green,
.status-New {
  background-color: #00A63D !important;
  color: white !important;
  transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
}
.green:hover,
.status-New:hover {
  background-color: #008E49 !important;
  transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
}
#request_form {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  margin-top: 75px;
  margin-bottom: 75px;
  display: block;
  padding: 25px;
}
#credits {
  z-index: 15;
  position: fixed;
  width: 100vw;
  text-align: center;
  bottom: 25px;
  color: white;
}
#rectangle1 {
  position: fixed;
  z-index: 10;
  background: #00A63D;
  width: 110vw;
  height: 200px;
  opacity: 1;
  bottom: -85px;
  transform: rotate(3deg);
  left: -20px;
  max-height: 20vh;
}
#rectangle2 {
  position: fixed;
  z-index: 11;
  background: #00A63D;
  width: 110vw;
  height: 250px;
  opacity: 0.7;
  bottom: -110px;
  transform: rotate(-5deg);
  right: -20px;
  max-height: 20vh;
}
#rectangle3 {
  position: fixed;
  z-index: 12;
  background: #00A63D;
  width: 110vw;
  height: 250px;
  opacity: 0.6;
  bottom: -110px;
  transform: rotate(4deg);
  left: -20px;
  max-height: 20vh;
}
#rectangle4 {
  position: fixed;
  z-index: 14;
  background: #00A63D;
  width: 110vw;
  height: 250px;
  opacity: 0.7;
  bottom: -100px;
  transform: rotate(-2deg);
  right: -20px;
  max-height: 20vh;
}
@media only screen and (max-width: 768px) {
  #request_form {
    margin-top: 25px;
  }
  #credits {
    position: relative;
    text-align: center;
    padding: 15px;
    background: #00A63D;
    bottom: 0px;
    left: 0px;
    width: 100%;
  }
  #rectangle1 {
    display: none;
  }
  #rectangle2 {
    display: none;
  }
  #rectangle3 {
    display: none;
  }
  #rectangle4 {
    display: none;
  }
}
/*# sourceMappingURL=global.css.map */