// Kiosk Registration Closed Page Styles

.kiosk-registration-closed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    margin: 0;
    padding: 0;
}

.kiosk-message-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.kiosk-message-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.kiosk-message-title {
    color: #333;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.kiosk-message-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.kiosk-retry-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #667eea;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;

    &:hover {
        background: #5a6fd6;
        color: white;
        text-decoration: none;
    }
}
