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

.spp-wrapper {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.spp-box {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.spp-icon {
    color: #667eea;
    margin-bottom: 24px;
}

.spp-box h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.spp-message {
    color: #666;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.spp-error {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    color: #ff4d4f;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.spp-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spp-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.spp-input:focus {
    border-color: #667eea;
}

.spp-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.spp-button:hover {
    opacity: 0.9;
}

.spp-button:active {
    transform: scale(0.98);
}

.spp-footer {
    margin-top: 32px;
    font-size: 13px;
    color: #aaa;
}

@media (max-width: 480px) {
    .spp-box {
        padding: 36px 24px;
    }
}
