.registration-cta {
    margin: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 51, 51, 0.15);
    background: url('/static/images/login_pade_img/pexels-pixabay-207662.jpg') center/cover no-repeat;
    position: relative;
    min-height: 360px;
}

.cta-overlay {
    background: rgba(44, 51, 51, 0.7); /* overlay for readability */
    color: #CBE4DE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 32px 24px 36px 24px;
    text-align: center;
}

.cta-prefix {
    font-size: 1rem;
    color: #0E8388;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
    background: #CBE4DE;         /* Light background color */
    padding: 6px 18px;           /* Some space inside */
    border-radius: 12px;         /* Rounded corners */
    display: inline-block;       /* So width fits content */
    box-shadow: 0 2px 8px rgba(14,131,136,0.08); /* Optional: subtle shadow */
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #0E8388;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.cta-btn:hover {
    background-color: #2C3333;
    color: #CBE4DE;
}
