body {
    margin: auto;
    height: 100%;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

/*** CONTACT FORM ***/

.contactForm {
    width: 80%;
    margin: 150px auto;
    padding:24px;
    content: "";
    display: table;
    clear: both;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(16,24,40,0.06);
}

.column {
    box-sizing: border-box;
    float: left;
    width: 50%;
    padding: 10px;
    height: auto;
}

form { 
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.info {
    margin: 20px 0px;
    color: #6b7280;
    font-size: 1rem;
}

.contactTitle {
    font-weight: bold;
    color:#33845C;
    margin: 0 0 30px;
    font-size: 2.5rem;
    text-align: center;
}

label {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

input[type="text"], input[type="email"], select, textarea {

    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e9ef;
    border-radius: 8px; 
    font-size: 0.95rem;
}

textarea { 
    grid-column: 1/-1;
    min-height: 120px;
    resize: vertical;
}

.full {
    grid-column:1/-1;
}

.actions {
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:flex-end;
    margin-top:6px;
}

.resetBtn {
    background:transparent;
    border:1px solid #e6e9ef;
    color:#6b7280;
}

.bg-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1000;
}

.gradient-bg {
    display: inline-block;
}

.gradient-bg::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: -100px;
    height: 800px;
    background: linear-gradient(0deg, rgba(0,0,0,0), black);
    z-index: -1;
}

.title {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 70px;
    font-weight: bold;
    color: white;
}

.subtitle {
    margin-top: -40px;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: lighter;
    color: white;
}

button {
    background-color: #33845C;
    font-family: Gothic A1, Tahoma, Geneva, Verdana, sans-serif;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}