*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #f4f6fb;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contactForm {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 400px;
}

#contactForm label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: #f9fafb;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #2563eb;
    outline: none;
    background: #fff;
}

#contactForm button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#contactForm button:hover {
    background: #1e40af;
}


































