﻿body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
}

.contact-container {
    background: #fff;
    padding: 70px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

    .contact-container h2 {
        margin-bottom: 20px;
        color: #333;
        font-size: 24px;
        text-align: center;
    }

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #007bff;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

.send-btn {
    background-color: #007bff;
    color: white;
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

    .send-btn:hover {
        background-color: #0056b3;
    }

.status {
    margin-top: 12px;
    font-size: 14px;
    color: green;
    display: none;
    text-align: center;
}

@media (max-width: 480px) {
    body {
        padding: 10px;
        align-items: flex-start;
    }

    .contact-container {
        padding: 16px;
        border-radius: 8px;
        box-shadow: none;
    }

        .contact-container h2 {
            font-size: 20px;
        }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .send-btn {
        padding: 10px;
        font-size: 14px;
    }
}
