/* Sanctuary Soft — Prayer Request Form */

/* Outer card wrapper */
.hoh-prayer-wrapper {
    max-width: 700px;
    margin: 40px auto;
    padding: 35px;
    background: #ffffff;
    border-left: 6px solid #7c5ac8;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

/* Force override theme form layout */
.hoh-prayer-form input,
.hoh-prayer-form textarea {
    width: 100% !important;          /* FORCE full width */
    max-width: 100% !important;      /* Prevent theme shrinking */
    box-sizing: border-box !important;
    display: block !important;       /* Prevent inline-block squeezing */
    margin: 0 !important;            /* Remove theme margins */
}

/* Labels */
.hoh-prayer-form label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #5a3e8f;
    margin-bottom: 10px;
    margin-top: 25px;
}

/* Inputs and textarea */
.hoh-prayer-form input[type="text"],
.hoh-prayer-form input[type="email"],
.hoh-prayer-form textarea {
    padding: 18px 20px;
    font-size: 17px;
    border: 1px solid #d8c9f0;
    border-radius: 14px;
    background: #faf7ff;
    color: #3f2f63;
    transition: all 0.25s ease;
}

/* Larger textarea */
.hoh-prayer-form textarea {
    min-height: 170px;
    resize: vertical;
}

/* Focus effect */
.hoh-prayer-form input:focus,
.hoh-prayer-form textarea:focus {
    border-color: #8a6cd1;
    box-shadow: 0 0 0 3px rgba(138,108,209,0.25);
    outline: none;
}

/* Checkbox */
.hoh-prayer-form input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 12px;
}

/* Submit button */
.hoh-button {
    width: 100%;
    margin-top: 35px;
    padding: 18px;
    background: linear-gradient(135deg, #7c5ac8, #5a3e8f);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.hoh-button:hover {
    background: linear-gradient(135deg, #6f4fb8, #4c347c);
    transform: translateY(-3px);
}

/* Message area */
.hoh-form-message {
    margin-top: 25px;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.hoh-form-message.hoh-working {
    display: block;
    background: #f3ecff;
    color: #5a3e8f;
}

.hoh-form-message.hoh-success {
    display: block;
    background: #e8f9f0;
    color: #2f7a4f;
    border: 1px solid #b6e8c8;
}

/* Soft fade-in animation */
.hoh-prayer-wrapper {
    opacity: 0;
    animation: fadeInSoft 0.6s ease forwards;
}

@keyframes fadeInSoft {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
