/* General form container */
.remodal {
    background-color: rgba(0, 0, 0, 0.9); /* semi-transparent dark background */
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Form heading */
.remodal h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Form paragraph */
.remodal p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Labels */
.remodal label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

/* Inputs and textarea */
.remodal input[type="text"],
.remodal input[type="email"],
.remodal textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: #111;
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.2s ease-in-out;
}

.remodal input[type="text"]:focus,
.remodal input[type="email"]:focus,
.remodal textarea:focus {
    border-color: #00e5ff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

/* Textarea adjustments */
.remodal textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button styling */
.pure-button.pure-button-primary {
    display: block;
    width: 100%;
    padding: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    background: #00e5ff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.pure-button.pure-button-primary:hover {
    background: #00b8cc;
    color: #fff;
    transform: translateY(-2px);
}

/* reCAPTCHA */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

/* Status message */
#form-status {
    text-align: center;
    font-weight: 500;
}

/* Remodal close button */
.remodal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

.remodal-close:hover {
    color: #00e5ff;
}
