body {
    font-family: Arial, sans-serif;
        background-color: #f4f4f9;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        padding-bottom: 30px;
        /* Add 30px padding to the bottom */
}
#contactForm {
    display: flex;
    padding: 20px;
    flex-direction: column;
    
}

form div {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    opacity: 80%;
    margin: auto;
    max-width: 500px;
}
.App-logo {
    height: 30vmin;
    position: relative;
    margin: 2vmin;
    pointer-events: none;
    transform: rotate(-7deg);
}
.terms {
    padding: 50px 20px;
        padding-bottom: 80px;
        /* Add bottom padding for more space */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        /* Maintain spacing between sections */
        height: 100%;
        max-width: 800px;
        margin: auto;
}
 .animated-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     overflow: hidden;
     z-index: -1;
     /* Place behind content */
     background-color: #fff;
     /* Optional fallback color */
 }

.ball {
    position: absolute;
    border-radius: 50%;
    background-color: #f0f0f0;
    filter: blur(10px);
    /* Blur effect */
    opacity: 0.8;
    /* Transparency */
    transition: transform 30s ease-in-out, top 30s ease-in-out, left 30s ease-in-out;
}

 .backdrop {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     backdrop-filter: blur(10px);
     /* Frosted glass effect */
     background-color: rgba(255, 255, 255, 0.5);
     /* Semi-transparent overlay */
     z-index: 0;
     /* Below form but above balls */
 }
h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form div {
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    margin-bottom: 10px;
}

input,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    background-color: #EBC7FF;
        color: black;
        border-color: #cd9be8;
        padding: 10px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
    color: #f0f0f0;
}

#response-message {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}
a {
    margin: auto;
    text-decoration: none;
    color: black;
    margin-bottom: 30px;
}