/**
 * Registration Required Alert
 * @package     com_roomavailabilitycalendar
 * @version     1.0.3
 */

.registration-required-alert {
    max-width: 800px;
    margin: 30px auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    display: flex;
    gap: 30px;
    align-items: center;
}

.alert-icon {
    font-size: 4em;
    opacity: 0.9;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.8em;
    font-weight: bold;
}

.alert-content p {
    margin: 0 0 25px 0;
    font-size: 1.1em;
    opacity: 0.95;
    line-height: 1.5;
}

.alert-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.alert-actions .btn {
    padding: 12px 30px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.alert-actions .btn-primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.alert-actions .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #667eea;
}

.alert-actions .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.alert-actions .btn-outline-primary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .registration-required-alert {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .alert-icon {
        font-size: 3em;
    }

    .alert-content h3 {
        font-size: 1.4em;
    }

    .alert-content p {
        font-size: 1em;
    }

    .alert-actions {
        flex-direction: column;
        width: 100%;
    }

    .alert-actions .btn {
        width: 100%;
    }
}
