/* === REGISTRATION INFO === */
.registration-info {
    width: 100%;
    background: linear-gradient(to right, #fdf8f0, #ffffff); /* Soft cream to white gradient */
    border-top: 3px solid #ff8f00; /* Vibrant orange border */
    padding: 16px 20px; /* Default padding for larger screens */
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    color: #424242; /* Dark grey for text */
    font-size: 15px; /* Default font size */
    line-height: 1.6;
    border-radius: 0 0 8px 8px;
    margin-top: 10px;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.registration-info p {
    margin: 0;
    /* background-color: chartreuse;
    color: darkblue; */
    background-color: skyblue;
    color: indigo;
    word-wrap: break-word; /* Ensures long words wrap */
    overflow-wrap: break-word; /* Modern property for word wrapping */
    font-weight: 700;
}

.registration-info span {
    color: #e65100; /* Deep orange for highlights */
    font-weight: bold;
}

/* --- Mobile Responsiveness for Registration Info --- */

/* For devices up to 768px (e.g., tablets in portrait, larger phones) */
@media (max-width: 768px) {
    .registration-info {
        padding: 12px 15px; /* Adjust padding for tablet/mobile */
        font-size: 14px; /* Slightly smaller font size for readability on smaller screens */
        line-height: 1.5; /* Slightly tighter line height */
    }
}

/* For very small devices (e.g., mobile phones in portrait) */
@media (max-width: 480px) {
    .registration-info {
        padding: 10px 10px; /* Further reduce padding for very small screens */
        font-size: 13px; /* Smaller font size for very small screens */
        border-radius: 0; /* Optional: Remove border-radius if you want it flush on very small screens */
    }
}
