 
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000; /* Black background for your theme */
    color: #FFD700; /* Golden text for contrast */
    line-height: 1.6;
    overflow-x: hidden; /* Ensure SVG designs stay within bounds */
}

/* Background Design */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Push to the back */
}

.background svg {
    position: absolute;
}

/* Line Pattern for Desktop */
.line-pattern {
    top: 10%;
    left: -10%;
    width: 150%;
    opacity: 0.1; /* Subtle design */
}

/* Abstract Design for Desktop */
.abstract-design {
    bottom: -10%;
    right: -10%;
    width: 50%;
    opacity: 0.2; /* Subtle design */
}

/* Mobile-Specific Design */
.mobile-design {
    display: none; /* Hidden by default */
}

/* Show Mobile Design on Smaller Screens */
@media (max-width: 600px) {
    .line-pattern, .abstract-design {
        display: none; /* Hide desktop designs */
    }

    .mobile-design {
        display: block; /* Show mobile-specific design */
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0.15; /* Subtle opacity for mobile */
    }
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #1a1a1a; /* Slightly lighter black for contrast */
    border-radius: 10px;
    border: 1px solid #FFD700; /* Real Golden border */
    box-shadow: 0px 4px 20px rgba(255, 215, 0, 0.1); /* Soft golden shadow */
    animation: fadeIn 1s ease-in-out;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h1 {
    font-size: 2.5rem;
    color: #FFD700; /* Real Golden title */
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1rem;
    color: #cccccc; /* Subtle gray text for secondary info */
}

/* Form Styles */
form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #333333; /* Dark borders */
    border-radius: 5px;
    background-color: #000000; /* Black input background */
    color: #FFD700; /* Real Golden text inside inputs */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #FFD700; /* Real Golden border on focus */
    box-shadow: 0px 0px 8px rgba(255, 215, 0, 0.5); /* Real Golden glow */
    outline: none;
}

textarea {
    grid-column: span 2; /* Full width for textarea */
    resize: none;
}

button {
    grid-column: span 2; /* Full width button */
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000; /* Black text for contrast */
    background-color: #FFD700; /* Real Golden background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #e5c100; /* Slightly darker golden for hover */
    transform: translateY(-3px);
}

/* Footer Text */
.form-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc; /* Subtle gray text */
    margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    form {
        grid-template-columns: 1fr;
    }

    textarea, button {
        grid-column: span 1;
    }
}
 