@import url("global.css");

.helpcontainer {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.left,
.right {
    flex: 1;
}

.helpcontainer h1 {
    font-size: 3rem;
    font-weight: bold;
}

.subtext {
    font-size: 1.2rem;
    margin-top: 10px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--alt-color);
    text-decoration: underline;
}

.right {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 30px;
    border-radius: 8px;
}

.intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.contact-form textarea {
    min-height: 100px;
}
.contact-form button {
    width: 100%;
    padding: 12px 15px;
    background: var(--alt-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-form button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
/* Responsive Design */

@media (max-width: 900px) {
    .helpcontainer {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .helpcontainer h1 {
        font-size: 2rem;
    }

    .form-group {
        flex-direction: column;
    }

    .contact-form h2 {
        font-size: 1.3rem;
    }

    .contact-form button {
        font-size: 0.95rem;
    }
}
