/**
 * OptiSud Newsletter - Public Styles
 */

/* Unsubscribe Page */
.osn-unsubscribe-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.osn-container {
    max-width: 600px;
    margin: 0 auto;
}

.osn-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.osn-icon {
    color: #46b450;
    margin-bottom: 30px;
    animation: osn-check-in 0.5s ease-out;
}

.osn-icon svg {
    display: inline-block;
}

@keyframes osn-check-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.osn-unsubscribe-page h1 {
    color: #333;
    font-size: 28px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.osn-message {
    font-size: 16px;
    color: #555;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.osn-submessage {
    font-size: 14px;
    color: #777;
    margin: 0 0 30px 0;
}

.osn-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.osn-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.osn-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.osn-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.osn-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.osn-btn-secondary:hover {
    background: #e0e0e0;
    color: #333;
}

.osn-support {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.osn-support a {
    color: #667eea;
    text-decoration: none;
}

.osn-support a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .osn-content {
        padding: 40px 25px;
    }
    
    .osn-unsubscribe-page h1 {
        font-size: 24px;
    }
    
    .osn-actions {
        flex-direction: column;
    }
    
    .osn-btn {
        width: 100%;
    }
}
