form {
    background: #181818;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
    max-width: 500px;
    margin: 32px auto;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #00ffea;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #333;
    border-radius: 6px;
    background: #222;
    color: #f0f0f0;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #00ffea;
    outline: none;
}

form button {
    background: #00ffea;
    color: #121212;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

form button:hover {
    background: #00c3ac;
}