body {
    background-color: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    color: darkslategray;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.btn-holder {
    text-align: center;
}

/* Optional: Additional custom styling */
.form-control {
    border-radius: 4px;
}

.btn {
    border-radius: 4px;
}

.contactMessage {
    position: absolute;
    background: #fcfcfcad;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.contactMessage span {
    padding: 1em;
    text-align: center;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    box-shadow: 0 0 5px 0 gray;
    width: 50%;
    margin: 0 auto;
    animation: wiggle 0.2s ease-in-out 4;
}

.contactMessage p {
    padding: 1em;
    text-align: center;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    box-shadow: 0 0 5px 0 gray;
    width: 50%;
    margin: 0 auto;
    font-weight: bolder;
    background: #bdee77;
    color: #343e3e;
    animation: fadeInOut 3s ease-in-out infinite;
}
.form-button-holder button:disabled, button[disabled] {
    border: 1px solid #5642dd !important;
    background-color: #1236ca !important;
    color: #fff !important;
}

@keyframes wiggle {
    0% {
        transform: rotate(1deg);
    }

    25% {
        transform: rotate(-1deg);
    }

    50% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(-1deg);
    }

}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }

}
