
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.contact-form {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #121212;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(245, 245, 245, 0.793);
}

.contact-form h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #e9e9e9;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #1c1c1c;
}

input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input:focus, textarea:focus {
    border-color: #00ff11;
    outline: none;
}

textarea {
    resize: vertical;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #03bd0f;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0c7700;
}
