body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.8); /* Slightly transparent background */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.form-container {
    width: 100%; /* Full width for responsiveness */
    max-width: 600px; /* Adjust as needed */
    margin: 0 auto; /* Center horizontally */
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box; /* Ensure padding is included in the width */
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}

Ol {
    text-align: center;
    margin-bottom: 20px;
}

ul {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2e2e2e;
    color: white;
}


input, select, textarea {
    width: calc(100% - 20px); /* Adjust to fit within the container */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2e2e2e;
    color: white;
    display: block; /* Ensure block display */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

button {
    width: calc(100% - 20px); /* Adjust to fit within the container */
    padding: 10px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

button:hover:enabled {
    background-color: #1da851;
}

button:disabled {
    background-color: grey;
}


/* Media query for smaller screens */
@media (max-width: 600px) {
    form, .form-container {
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    label, input, select, textarea, button {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(30, 30, 30, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
    text-align: center;
}

.popup h2 {
    margin-bottom: 20px;
}

.popup button {
    width: auto;
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.popup button:hover {
    background-color: #1da851;
}

.popup.show {
    display: block;
}
/* Custom styles for the calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
/* Center the header image */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.header-image {
    max-width: 100%;
    height: auto;
}

/* Custom styles for the calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
/* Center the header image and set its size */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.header-image {
    width: 100px; /* Adjust this value as needed */
    height: auto; /* Maintain aspect ratio */
}
