#contactForm {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
}

.big{
    background-color: rgba(255, 255, 255, 0.779);
    padding: 1rem;
    color: black !important;
    border-radius: 15px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.584);
}
.big p{
    color: black !important;
    font-size: 18px !important;
}

.landing-top{
    max-height: 100px;
    box-shadow: 0 2px 8px 0 rgb(0, 0, 0);
    z-index: 5;
    position: relative;
}
.landing-top img{
    max-height: 80px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}
.section{
    align-items: flex-start !important;
}
#landing-title{
    color: black !important;
}
.forest-background {
    background-image: url('https://i.imgur.com/17yXZwD.jpg');
    background-size: cover;
    min-height: calc(100vh - 87px);
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

label {
    font-size: 1.25rem;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
    background-color: #0376cf;
    color: white;
}

input[type="submit"]:hover {
    background-color: #045ca0;
}

input[type="submit"]:focus {
    outline: none;
}

.name-container {
    display: flex;
    justify-content: space-between;
}

.name-input {
    flex: 1;
}

.name-input:first-of-type {
    margin-right: 10px;
    /* Adjust the spacing between first and last name inputs */

}
.section{
    /* margin-top: -50px; */
    z-index: 0;
}
.mt-50 {
    margin-top: 0px !important;
}

@media(max-width: 1000px) {
    .name-container {
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .name-input:first-of-type {
        margin-right: unset
    }
}

.success-animation { margin:50px auto;}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #0E3A19;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #0E3A19;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #0E3A19;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
 
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #0E3A19;
    }
}