/* ---- Background ---- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
}

.page-bg {
    position: fixed;
    inset: 0;
    background: url('images/stonebg.png') center/cover no-repeat;
    z-index: -1;
}

/* ---- Header Graphic ---- */
.header-image {
    text-align: center;
    margin-top: 60px;
    margin-bottom: -80px; /* pull overlapping the box */
}
.header-image img {
    width: 900px;
    max-width: 95%;
    display: block;
    margin: 0 auto;
    pointer-events: none;
}

/* ---- Main Box ---- */
.form-container {
    width: 820px;
    max-width: 92%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.78);
    padding: 60px 60px 80px;
    border-radius: 6px;
    margin-bottom: 10px;
}

h2 {
    text-align: center;
    font-weight: 300;
    margin-bottom: 40px;
}

/* ---- Inner form controls ---- */
.form-inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin: 20px 0 6px;
    font-size: 15px;
}

input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
}

/* Upload block */
.upload-note {
    margin-top: 25px;
}

.upload-btn {
    background: #8cc63f;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 6px;
}

.max-size {
    font-size: 14px;
    margin-bottom: 20px;
}

.submit-btn {
    margin: 25px auto 0;
    display: block;
    background: #8cc63f;
    color: #fff;
    padding: 14px 34px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

/* Button hover effects */
.upload-btn:hover,
.submit-btn:hover {
    background: #78aa37;   /* slightly darker green */
    color: #fff;           /* keep text white */
    transition: background 0.2s ease;
}


/* ---- Footer ---- */
.footer {
    text-align: center;
    font-size: 14px;
}

.footer a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .header-image {
        margin-top: 30px;
        margin-bottom: -30px;
    }

    .header-image img {
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    .form-container {
        padding: 30px 20px 50px;
        width: 95%;
    }
 
    h2 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    label {
        font-size: 14px;
    }

    input {
        padding: 12px;
        font-size: 15px;
    }

    .upload-btn,
    .submit-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .max-size {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .footer {
        text-align: center;
        padding: 20px 0;
        font-size: 13px;
    }
}
