h1{
  font-size: 30px;
  padding-bottom: 50px;
}
h2{
font-size: larger;
padding: 20px;
}
body{
    margin: 0;
}
.background{
    background-image: url('background_img.png');
    background-position: center;
    background-size: cover;
    height: 100vh;
    filter: blur(10px);
    display: flex;
}
.content {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  justify-content: center;
  border-radius: 12px;
  padding-right: 100px;
  padding-left: 100px;
}
.background::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 0;
}
.form-wrapper{
  display: flex;
  flex-direction: column;
  gap: 25px;
}
label{
  display: inline-block;
   width: 150px;
   text-align: left;
}
#offer-letter-fields{
  width: 180px;
  height: 40px;
  text-align: center;
}
button{
  margin-top: 30px;
}
input:disabled{
    background-color:white;
    color:black;
}
.property-name-2:read-only::placeholder{
  color: white;
}
.dep-date-1:read-only::placeholder{
  color: white;
  font-weight: bold;
}
.dep-date-1{
  color: black;
  font-weight: bold;
}
.dep-date-2{
  color: black;
  font-weight: bold;
}
.arrvial-date-2{
  color: black;
  font-weight: bold;
}
.row{
  padding: 5px;
}