/* Stone Soup Featured Writers - Frontend Styles */
/* Additional styles can be added here if needed */
/* Main styles are embedded in the submission-form.php template */

.stonesoup-content {
    margin-top: 20px;
}

/* Login Notice Styles */
.ssfw-login-notice {
    background: #f8f9fa;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
}

.ssfw-login-notice p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 24px;
    font-weight: 500;
}

.ssfw-login-button {
    display: inline-block;
    padding: 14px 48px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #000000;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.ssfw-login-button:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.ssfw-login-button:focus {
    outline: 3px solid #4a90d9;
    outline-offset: 2px;
}