@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html, body, input, textarea, select, button, a, h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'Poppins', sans-serif !important;
}

button, .btn, [role="button"], input[type="submit"], input[type="button"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.75em 2em;
    min-width: 120px;
    min-height: 44px;
    background: #2d3748;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-align: center;
}
button:hover, .btn:hover, [role="button"]:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: #4a5568;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
    html, body {
        font-size: 15px;
    }
    .container, .header-wrap, .footer, .main-content {
        padding-left: 8px !important;
        padding-right: 8px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    .logo img {
        width: 120px !important;
        height: 40px !important;
    }
    button, .btn, [role="button"], input[type="submit"], input[type="button"] {
        min-width: 100px;
        min-height: 40px;
        padding: 0.5em 1.2em;
        font-size: 0.95rem;
    }
}
