/* email.css - Contact form specific styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f7f7fa;
    margin: 0;
    padding: 0;
}

.contact-main {
    max-width: 480px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
}

.contact-main h1 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.contact-note {
    color: #555;
    font-size: 1rem;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-control {
    font-family: inherit;
    font-size: 1rem;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f9f9fc;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #0077ff;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    background: #0077ff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

button[type="submit"]:hover {
    background: #005fcc;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

@media (max-width: 599px) {
    .contact-main {
        max-width: 98vw;
        padding: 18px 4vw 18px 4vw;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}

