/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    
}


/* Contact Form Container */
.contact-container {
    background: linear-gradient(to bottom, #1e3a8a, white);
    
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    //height: 100%;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-form.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-form h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Input Fields */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}

input, textarea {
    width: 100%;
    padding: 12px 12px 12px 35px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    color: #333;
    font-size: 16px;
    outline: none;
    transition: background 0.3s ease;
}

input:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.5);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, #2563eb, #7b2cbf);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
}
