/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body and Container Styling */
body {
    background-color: #000; /* Black background */
    color: #00ff00; /* Neon green text */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #111; /* Dark grey background for form */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3); /* Green glow effect */
    width: 400px;
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #00ff00; /* Green text for heading */
}

/* Form and Input Styling */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5rem;
}

input, textarea {
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    background-color: #000; /* Black input fields */
    color: #00ff00; /* Green text */
    border: 2px solid #00ff00; /* Green border */
    border-radius: 5px;
}

input:focus, textarea:focus {
    border-color: #33ff33; /* Brighter green when focused */
    outline: none;
}

/* Submit Button Styling */
.btn {
    padding: 1rem;
    background-color: #00ff00;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #33ff33; /* Brighter green on hover */
}

