/* 1. Force the hidden table layers to break structure and stretch wide */
.custom-acy-signup table, 
.custom-acy-signup tbody, 
.custom-acy-signup tr, 
.custom-acy-signup td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. Style the custom label containers to stretch out */
.custom-acy-signup td {
    margin-bottom: 12px !important;
    text-align: left !important;
}

/* 3. Force the literal text inputs to stretch to full width */
.custom-acy-signup input[type="text"], 
.custom-acy-signup input[type="email"],
.custom-acy-signup input.acym__subscription__form__fields__input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    padding: 8px 10px !important; /* Adds clean spacing inside the boxes */
}

/* 4. Center or widen the submit/update button container */
.custom-acy-signup .acym__subscription__form__button,
.custom-acy-signup input.subbutton,
.custom-acy-signup input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    padding: 10px !important;
}
/* Make placeholder text scale beautifully on mobile layout screens */
.custom-acy-signup input::placeholder {
    font-size: 0.85rem !important;  /* Shrinks the text slightly so the long sentence fits */
    color: #6c757d !important;      /* Standard clean Bootstrap gray color */
    font-style: italic !important;   /* Makes it visually clear that it is a hint */
}
