/* ========== RESET ========== */
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
  background-image: url(images/bg_web.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 150px;
  background-size: cover;
}

/* body {
    margin: 0;
    background: url(images/bg_web.jpg) no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
	background-repeat: no-repeat;
    min-height: 100vh;
	padding-top: 420px;
    overflow-x: hidden;
} */

/* ========== CONTAINER ========== */
.supportContainer {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ========== HEADING ========== */
.supportContainer h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

/* ========== FORM ========== */
.supportForm input,
.supportForm textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
}

.supportForm textarea {
    height: 120px;
    resize: none;
}

.supportForm button {
    width: 100%;
    background: linear-gradient(135deg,#1e88e5,#1565c0);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.supportForm button:hover {
    box-shadow: 0 8px 20px rgba(30,136,229,0.4);
}

/* ========== CAPTCHA ========== */
.captchaBox {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin-bottom: 14px;
}

.captchaText {
    background: #1e88e5;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    letter-spacing: 4px;
    border-radius: 6px;
    user-select: none;
}

.captchaBox input {
    flex: 1;
}

/* ========== POPUP ========== */
.popupOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popupBox {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    max-width: 320px;
    text-align: center;
}

.popupClose {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}

.popupError {
    color: #d32f2f;
    font-weight: 600;
}

.popupSuccess {
    color: #2e7d32;
    font-weight: 600;
}

/* ========== MOBILE ========== */
@media (max-width: 576px) {
    body {
        padding-top: 280px;
    }

    .supportContainer {
        margin: 0 15px 40px;
        padding: 20px;
    }
}

