.contactme3-container {
    position: relative;
    background-size: cover;
    background-position: center;
}

.contactme3-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: rgba(39, 55, 73, 0.80);
}

.contactme3-container label {
    display: flex;
    flex-direction: column;
}

.contactme3-container select, .contactme3-container input, .contactme3-container textarea {
    padding: 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
}

.contactme3-container label, .contactme3-container select, .contactme3-container input, .contactme3-container textarea {
    font-size: 1.2rem;
    font-weight: 300;
    color: white;
}

.contactme3-container .thank-you-text {
    display: none;
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    font-size: 1.5rem;
    font-weight: 200;
    color: white;
}

.contactme3-container .form-header {
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.contactme3-container .contact-me-form {
    padding: 30px;
}

.contactme3-container .action-selection-option {
    display: flex;
    gap: 6px;
    align-items: center;
}

@media (max-width: 768px) {
    .contactme3-container .thank-you-text {
        display: block;
    }
}