
.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-image: url("imgs_and_pdf/Application_UI/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    background-color: #bbbaba;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 10px;
    padding: 50px;
    margin-bottom: 50px;
    
}

.inquiryForm {
    width: 100%;
    height: 100%;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    font-size: clamp(12px, 1.2vw, 30px);
    padding-top: 10px;
}

.map {
    display: flex;
    padding-top: 20px;
}

.smallMap {
    display: none;
}

.phoneSize {
    display: none;
}

.topLeftBox h1{
    font-size: clamp(20px, 2vw, 40px);
    font-weight: 700;
    color: aliceblue;
    font-family: 'Times New Roman', Times, serif;
}

.topLeftBox span{
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(20px, 2vw, 40px);
    font-weight: 700;
    color: aliceblue;
}

.topLeftBox h2{
  font-size: clamp(13px, 1.3vw, 30px);
  margin: 2px;
  color: orange;
}

.topLeftBox h3{
  font-size: clamp(12px, 1.2vw, 30px);
    font-weight: 700;
    margin: 2px;
    color: orange;
}

.inquiryForm h4{
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
}

.inquiryForm label{
  font-size: clamp(13px, 1.3vw, 30px);
  color: orange;
}

.space {
    color: #00000000;
    font-size: 6px;
}

.submitButton input {
    width: 1fr;
    height: 1fr;
    background-color: rgb(161, 127, 255);
    border: none;
    color: aliceblue;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: clamp(12px, 1.5vw, 20px);
    border-radius: 5px;
    cursor: pointer;
    text-shadow: none; 
}

legend {
    font-size: 1.2em;
    text-shadow: 2px 2px 5px  #ffcab0; 
    color:  white;
    font-weight: 800;
}

fieldset {
    border: 2px solid #ccc;
    padding: 1em;
    margin-bottom: 1em;
}

input, select, textarea {
    background-color: rgba(213, 211, 211, 0.6);
    border: 1px solid rgb(209, 207, 207);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: black;
    font-weight: 600;
    text-shadow: 1px 1px 3px  #ffcab0; 
}

.personalInfo {
    display: grid;
    grid-template-columns: min-content 1fr; /* Set column sizes */
    gap: 10px; /* Adjust the gap between grid items */
}

.salutation {
    display: flex;
    flex-direction: column;
}

select[name="salutation"] {
    min-width: 50px; /* Set the minimum width for the select element */
    width: auto; /* Let the browser determine the optimal width */
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[name="name"] {
    width: 97%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#companyName {
    width: 100%; 
    padding: 0.5em;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

input[name="companyName"] {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#email {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

#address {
    width: 100%;
    height: 10%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

select[name="country"] {    
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

::placeholder {
    color: black;
    opacity: 0.8;
    text-shadow: 1px 1px 3px  #ffcab0; 
}

#phone {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

#message {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

p {
    width: 100%;
    text-align: right;
    margin-top: -30px;
    padding-right: 10px;
    color: #737373;
}

/***********************************************************************************************************/

.footer {
    width: 100%;
    background-color: rgb(100, 54, 226, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(6px, 0.7vw, 15px);
    font-weight: 0;
    position: relative;
    bottom: 0;
    color: yellow;
  }

/***********************************************************************************************************/

@media (max-width: 1300px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background-image: url("../imgs_and_pdf/Application_UI/background.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        object-fit: cover;
        background-attachment: fixed;
    }
    
    .content {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-left: 50px;
        margin-right: 50px;
        padding: 20px;
        padding-bottom: 50px;
    }

    .bigMap {
        display: none;
    }

    .smallMap {
        display: block;
    }

    .phoneSize {
        display: none;
    }
    
    .footer {
    position: relative;
    bottom: 0;
}

}

@media (max-width: 900px) {

    .smallMap {
        display: none;
    }

    .phoneSize {
        display: block;
    }
    
    .phoneHolder {
        display: flex;
        align-items: start;
    }

    .phone {
        width: 100%;
    }

}

@media (width >= 2048px) {

    .wrapper{
        height: 100vh;
    }

    .footer{
        position: absolute;
    }

}