body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2c3e50;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    user-select: none; /* Disable text selection */
    overflow-x: hidden;
}

.container {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
    max-width: 600px;
    overflow: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 25px;
    margin-bottom: 25px;
}

.container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
    }
    100% {
        text-shadow: 0 0 20px #ff00de, 0 0 40px #ff00de, 0 0 60px #ff00de;
    }
}

input[type="text"],
textarea,
select,    
button {
    width: calc(100% - 40px);
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
}

input[type="text"]::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0.3); /* Background color */
    color: #fff; /* Text color */
    border: none;
    border-radius: 5px;
    padding: 10px 30px 10px 10px;
    font-size: 16px;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="#ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18px" height="18px"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/><path fill="none" d="M0 0h24v24H0z"/></svg>');
    background-size: 18px;
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

select:hover {
    background-color: rgba(0, 0, 0, 0.5); /* Background color on hover */
}

select:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.7); /* Background color on focus */
}

button {
    cursor: pointer;
    background-color: #3498db;
}

button:hover {
    background-color: #2980b9;
}

button:active {
    background-color: #1f618d;
}

textarea {
    max-height: 200px;
    min-height: 200px;
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
}

label {
    font-size: 18px;
}
