body {
  font-family: Arial, sans-serif;
  margin: 0px;
  background: #111827;
}

form {
  background: #fff;
  padding: 20px;
  margin: auto;
  border-radius: 10px;
}

input, button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

button {
  background: #0073e6;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #005bb5;
}

h2, h3 {
  text-align: center;
}

#mainRes{
    display: flex;
    width: 100%;
    height: 100vh;
     background-image: url('/Images/background.webp'); 
     background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#mainRes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Transparent black */
    z-index: 1;
}


#logoRes, #formRes {
    width: 50%;
    height: 100%;
    display: flex;  
    justify-content: center;    
    align-items: center; 
    flex-direction: column;
    z-index: 3;
}

#logoRes img{
  width: 70%;
}

#logoRes h4{
  color: white;
  margin-top: 50px;
  font-size:30px;
  letter-spacing: 10px;
  word-spacing: 10px;
}


#formRes form{
    color:#000;
    background: linear-gradient(0deg,#11182700 0%, #1f293700 100%);
    width: 70%;
}


#formRes {
    /*background: linear-gradient(0deg,#111827 0%, #1f2937 100%);*/
    background: linear-gradient(0deg, #ffffff80 0%, #ffffff80 100%);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: row;
}



form input {
  background-color: #1f293700;
  border: 1px solid #000;
  border-radius: 10px;;
  padding:20px;
  color: #000;
  font-size: 16px;
  margin-bottom: 20px;
  width: 93%;
}

form h2{
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: left;
}
form button{
  margin-top: 50px;
  font-size: 18px;
  border-radius: 10px;
  padding: 20px;
  letter-spacing: 5px;
  margin-bottom: 50px;
}

form a{
  font-size: 18px;
  color:#000;
}

.flex{
    display: flex;
    gap: 10px;
}

.flex select {
    margin-top: 10px;
    width: 100%;
    height:50px;
    padding-left:5px;
    border-radius: 5px;
    background: #ffffff00;
    color:#000;
    border: #000 solid 1px;
}


.colOne{
    width: 50%;
}


.colTwo{
    width: 50%;
}

.checkboxStyle{
    width: auto;
}

.checkImage {
    width: 100px;
    padding: 50px;
}


.result {
    text-align: left;
    width: 60%;
}

.result h2{
    text-align: left;
}

.buttonGroup{
    display: flex;
    flex-direction: row;
    width: 100%;
}

hr.line{
    border: 1px solid black;
}

.buttonGroup a{
    text-decoration: none;
    color:black;
    padding: 10px 20px;
    background-color: white;
    border-radius: 5px;
    margin-right: 10px;
    margin-top: 20px;
    width: 50%;
    text-align: center;
}

#extraPagesDiv {
    margin-top: 20px;
}















