body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

header {
    background: rgba(30, 30, 30, 0.95);
    color: #e0e0e0;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(33, 235, 255, 0.5);
}

h1 {
    font-size: 2em;
    margin: 0;
}

h2 {
    margin: 20px 0 10px 0;
}

main {
    padding: 20px;
    display: flex;
    justify-content: center;
}

section {
    max-width: 600px;
    margin: 20px;
    padding: 15px;
    background: rgba(50, 50, 50, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
}

button {
    background: #000;
    color: #e0e0e0;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

button:hover {
    background: #333;
    box-shadow: 0 0 20px blue, 0 0 30px pink;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    color: #e0e0e0;
    text-align: center;
    padding: 10px;
}
.toggle-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px; /* Space below the toggle */
}

.toggle-container input {
    display: none; /* Hide the default checkbox */
}

.toggle-slider {
    position: relative;
    width: 60px; /* Width of the slider */
    height: 30px; /* Height of the slider */
    background-color: #ccc; /* Default background color */
    border-radius: 15px; /* Rounded corners */
    transition: background-color 0.3s, box-shadow 0.3s; /* Background color and shadow transition */
    margin-right: 10px; /* Space between the slider and label */
}

.toggle-slider::before {
    content: "";
    position: absolute;
    width: 28px; /* Width of the circle */
    height: 28px; /* Height of the circle */
    left: 1px; /* Position the circle inside the slider */
    bottom: 1px; /* Position the circle inside the slider */
    background-color: white; /* Circle color */
    border-radius: 50%; /* Round circle */
    transition: transform 0.3s; /* Circle movement transition */
}

input:checked + .toggle-slider {
    background-color: #21ebff; /* Background color when checked */
    animation: colorGlow 1s infinite alternate; /* Add color change animation */
    box-shadow: 0 0 20px #21ebff, 0 0 30px #21ebff; /* Glowing effect */
}

input:checked + .toggle-slider::before {
    transform: translateX(30px); /* Move circle to the right */
}

/* Color and glow animation */
@keyframes colorGlow {
    0% {
        background-color: #21ebff; /* Start color */
        box-shadow: 0 0 10px #21ebff, 0 0 20px #21ebff;
    }
    100% {
        background-color: #ff21eb; /* End color */
        box-shadow: 0 0 20px #ff21eb, 0 0 30px #ff21eb; /* Change glow color */
    }
}
